I'm configuring users programatically and I don't want them to see the dialog that asks them to "Connect your online accounts".
Using the command line, how can I prevent this ever coming up?
Using Ubuntu 19.04 desktop
thanks
I'm configuring users programatically and I don't want them to see the dialog that asks them to "Connect your online accounts".
Using the command line, how can I prevent this ever coming up?
Using Ubuntu 19.04 desktop
thanks
Workaround - Tested in Ubuntu 19.04
with the help of this post.. https://askubuntu.com/a/1123001/739431
the command that executes the initial setup for Ubuntu 19.04 is
/usr/libexec/gnome-initial-setup --existing-user
If your question is only to disable "the dialog that asks them to "Connect your online accounts". this post is not suitable..
the initial setup is from the package
gnome-initial-setup
So it is not possible to disable only the
online accounts
dialogue unless one can edit the source files..Option 1: remove the package -
sudo apt purge gnome-initial-setup
Option 2: Comment the 5th line which starts with
Exec=
from the file/etc/xdg/autostart/gnome-initial-setup-first-login.desktop
to comment the line, since you mentioned that you want automation, save the below command in your script..
to revert the changes at any time run the below command
Output of
nano /etc/xdg/autostart/gnome-initial-setup-first-login.desktop
Please note that, when the user is newly created and at his first login if the
Exec=
line iscommented
.. the user will not see gnome-initial-setup, however.. If at later stage when the Exec line isuncommented
.. the user will be shown thegnome-initial-setup
at his next login for one and only once..