Archives For November 30, 1999

remove white dots, guest session

This is a quick tutorial that shows you how to remove the Guest session and the white dots from Unity’s login screen in Ubuntu 14.10 Utopic.

1. To remove the Guest session:

Press Ctrl+Alt+T on keyboard to open the terminal. When it opens, paste the command below and hit enter:

sudo gedit /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf

Type in your user password when it asks. Note that there’s no visual feed back when typing password.

As the picture shows, when the editor opens, add a new line into the end and save the file

allow-guest=false

That’s it. You won’t see the Guest next time Ubuntu boots up.

2. To Remove white dots:

There is a graphical tool dconf-editor which provides options to change the login screen background and remove the white dots (draw grid).

a.) To install dconf-editor, click the link below to bring up Ubuntu Software Center and click the install button:

b.) To configure Unity login screen, you need the lightdm user privilege to launcher dconf-editor. To do so:

Press Ctrl+Alt+T to open terminal. When it opens, run commands to get root privilege:

sudo -i

Type in your user password when it asks.

Allow user lightdm to create a connection to the X server:

xhost +SI:localuser:lightdm

Switch to user lightdm in this terminal window:

su lightdm -s /bin/bash

Finally start dconf-editor:

dconf-editor

c.) When the dconf-editor opens, navigate to com –> canonical –> unity-greeter in left. Then disable the value for both draw-grid and draw-user-backgrounds.

Done. You’ll see the changes in next boot.

There’re lots of white dots on default LightDM login screen, which is quite annoying. This quick tip shows you how to remove them in Ubuntu 13.10 Saucy.

See the screenshot before and after:

login screen with white dots

login screen without white dots

To get started:

Press Ctrl+Alt+T on your keyboard to open terminal. When it opens, run:

1. Run command to allow user lightdm to create a connection to the X server:

sudo xhost +SI:localuser:lightdm

2. Then switch to user lightdm in the terminal window.

sudo su lightdm -s /bin/bash

3. Finally set draw grid (white dots) feature to false:

gsettings set com.canonical.unity-greeter draw-grid false

That’s it.

If you’re not comfortable with command console. You can use Ubuntu-Tweak, it has an option to turn off this feature under Tweaks -> Login Settings -> unlock -> turn off draw grid.