Newtron Malayalam Asked: 2020-04-18 21:09:45 +0800 CST2020-04-18 21:09:45 +0800 CST 2020-04-18 21:09:45 +0800 CST How user manager in ubuntu adds users from gui 772 Can anybody describe how user manager in gnome or any other DE adds users without commandline using GUI? How it binds adduser function and GTK together? gnome gui adduser 1 Answers Voted Best Answer N0rbert 2020-04-19T00:13:01+08:002020-04-19T00:13:01+08:00 The answer to the question is reading source code. Let's consider users-admin executable which is used in Ubuntu MATE. It is a part of gnome-system-tools package. Its source code is located on GitHub. So you have to read source code in the users folder to find what you want to find. Also we can consider gnome-control-center's user-accounts applet for GNOME sHell. It is a part of gnome-control-center package. Here is its source code or better here. You can read it too.
The answer to the question is reading source code.
Let's consider
users-admin
executable which is used in Ubuntu MATE.It is a part of
gnome-system-tools
package.Its source code is located on GitHub.
So you have to read source code in the users folder to find what you want to find.
Also we can consider
gnome-control-center
'suser-accounts
applet for GNOME sHell.It is a part of
gnome-control-center
package.Here is its source code or better here. You can read it too.