Last active
December 4, 2017 12:49
-
-
Save chrisma/0bed5d8b8c6261ba1f3b8badf3dff047 to your computer and use it in GitHub Desktop.
Change login screen background Ubuntu 17.10 using GDM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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