How to change the wallpaper in linux mint 11 log in screen

4

I am having a bit of a issue finding the way of how to change the wallpaper for Linux Mint 11 log in screen.

Do you guys know how to do this?

bbatman

Posted 2011-09-12T19:13:01.697

Reputation: 453

Answers

4

Linux Mint, I know is based off Ubuntu, so I'll give you the Ubuntu answer to the question.

Under the System menu (which I know, Mint doesn't have but it should have it as a sub menu, if not, look for the rest of what I'm telling you here), look at the Administration submenu, then under Login Screen. Under that, I believe believe you can change it. If not, you'll have to look in the repos for something called 'Startup Manager' and install that, which should allow for you to change your login screen.

Failing that.... this solution will work, linked here. I don't know any soloution outside this... Long explanation shorted: Change theme, modify theme, or you may download a theme that fits you well... hope this was helpful

Unexpected reboot

Posted 2011-09-12T19:13:01.697

Reputation: 66

-FYI Login screen and Start up manager doesn't have the option to change the login screen. I did a little research and found out that is a theme like you said. Thank you – bbatman – 2011-09-13T11:22:54.970

1I actually found a easier way to do this. I downloaded Ubuntu Tweak. – bbatman – 2011-09-13T12:06:30.943

4

Alternatively, if you don't want to install the ubuntu tweak package, you can change the login background from the command line like so:

First change the default background, since gdm is already configured to use it as the login background.

$ cd /usr/share/backgrounds/linuxmint
$ sudo ln -sf some-other-background.jpg default_background.jpg

Then clear out the gdm cache to force it to regenerate its background image.

$ sudo rm /var/lib/gdm/.cache/wallpaper/*

And viola! The next time you have to login or unlock your screen, gdm should display the new background.

geoffro17

Posted 2011-09-12T19:13:01.697

Reputation: 41