Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
7
rated 0 times [  7] [ 0]  / answers: 1 / hits: 20117  / 2 Years ago, sat, july 9, 2022, 3:08:22

I am using Ubuntu 14.04 LTS 64 bit . I know this question has popped up many times but I want to make it very clear that none of the posts helped me a bit.


my Problem:
I am unable to get my custom wallpaper stored at /home/sudeepto/Pictures on the Ubuntu login screen . The screen shows me purple background and upon giving login credentials the graphics gets really scrambled for a while and then I can use my system just fine.


I guess since most of the articles are not Ubuntu 14.04 based, I am having such problems.


Things that I tried:


I followed this post on askbuntu . I tried both the suggestions but no luck.


I don't know how to take screenshot of unity-greeter, otherwise I would have given links to my login screen as well.


Please tell me what should I do next to solve this problem which I never faced in previous versions of Ubuntu.


More From » 14.04

 Answers
2

To change the background of the login screen (based on this answer):



sudo -i
xhost +SI:localuser:lightdm
su lightdm -s /bin/bash
gsettings set com.canonical.unity-greeter draw-user-backgrounds 'false'
gsettings set com.canonical.unity-greeter background 'path-to-image'
exit


This will only change the background of the login screen. If you also want to change the background of your lock screen, you should also execute the following commands as each user you want to change the background for:



gsettings set com.canonical.unity-greeter draw-user-backgrounds 'false'
gsettings set com.canonical.unity-greeter background 'path-to-image'


I can confirm this is working on 14.04 LTS.






By setting draw-user-backgrounds to false you can set a custom background.



Obviously you should replace path-to-image by an absolute path to the image you want to use. Make sure the lightdm user has read permissions for this file.






Optional tweaks you might like



You can also change the background color which you'll see in a flash (default purple) before your background is loaded. To do this, execute the following command after the other gsettings commands (this will change the color to black):



gsettings set com.canonical.unity-greeter background-color '#000000'


And you can disable the dots on the login screen by executing the following:



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


And also remove the greeter sound



gsettings set com.canonical.unity-greeter play-ready-sound 'false'

[#25647] Saturday, July 9, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
memorrappin

Total Points: 325
Total Questions: 122
Total Answers: 100

Location: Armenia
Member since Sat, Sep 12, 2020
4 Years ago
;