Tuesday, April 30, 2024
 Popular · Latest · Hot · Upcoming
78
rated 0 times [  78] [ 0]  / answers: 1 / hits: 71327  / 2 Years ago, fri, january 14, 2022, 9:52:49

I would like to set the wallpaper in the login screen (Unity Greeter), how do I do that?


More From » wallpaper

 Answers
7

Ubuntu 12.04 to 13.04



Ubuntu 12.04 Unity greeter has introduced selected user dynamic background, that means that when selecting a user from the available users list the background will change to reflect the selected user's desktop background.



By default lightdm will set /usr/share/backgrounds/warty-final-ubuntu.png as the default background and the option for the dynamic background switching on.



Setting the dynamic switching off





Open a terminal and get root



sudo -i


(Type sudo password)



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



xhost +SI:localuser:lightdm


Switch user to lightdm



su lightdm -s /bin/bash


Turn off the dynamic switching of the background



gsettings set com.canonical.unity-greeter draw-user-backgrounds 'false'


If you want to reset that setting to default after changing it, follow all the steps until the command above and instead use



gsettings reset com.canonical.unity-greeter draw-user-backgrounds


When you are done setting off or reseting to default the dynamic background feature you can close the terminal or type 2x exit, first to revert back to root and the second to clear the root privileges and revert back to your normal user.



Changing the default fixed background



(you will only see this one if the user did not set a desktop background picture or if the dynamic setting is set to false)



Open a terminal and get root



sudo -i


(Type sudo password)



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



xhost +SI:localuser:lightdm


Switch user to lightdm



su lightdm -s /bin/bash


Change the default background with a picture of your choice



gsettings set com.canonical.unity-greeter background '/foo/wallpaper.png'


(Note: the wallpaper file cannot be located inside a encrypted user's home, those are only mounted after the user has logged in with his account.)



If you want to revert that to the default background follow all the steps until the command above but instead type



gsettings reset com.canonical.unity-greeter background


When you are done changing the default background feature or reverting back to the default one you can close the terminal or type 2x exit, first to revert back to root and the second to clear the root privileges and revert back to your normal user.


[#43244] Saturday, January 15, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
herfor

Total Points: 490
Total Questions: 101
Total Answers: 110

Location: Guadeloupe
Member since Mon, Jan 24, 2022
2 Years ago
;