Skip to content

Instantly share code, notes, and snippets.

@chrisma
Last active December 4, 2017 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisma/0bed5d8b8c6261ba1f3b8badf3dff047 to your computer and use it in GitHub Desktop.
Save chrisma/0bed5d8b8c6261ba1f3b8badf3dff047 to your computer and use it in GitHub Desktop.
Change login screen background Ubuntu 17.10 using GDM
#http://ubuntuhandbook.org/index.php/2017/10/change-login-screen-background-ubuntu-17-10/
sudo cp ~/Pictures/landscape.png /usr/share/backgrounds/
xhost +local: && sudo gedit /etc/alternatives/gdm3.css
#lockDialogGroup {
background: #000000 url(file:///usr/share/backgrounds/landscape.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment