How to change Ubuntu Budgie login screen background?How do I change the wallpaper of the login screen?Changing login screen wallpaperSettings schema 'x.dm.slick-greeter' is not installedChanging login background automaticallyLogin screen image not showing on Ubuntu 18.04Log-in screen background (on Ubuntu 18.04) is not changing though I made necessary changes in necessary filesLogin screen wallpaper is not working in ubuntuChange color of background on login screenubuntu will not let me set login page backgroundHow do I change the login screen in Ubuntu 16.04+?Ubuntu Budgie: Black login-screen
How to explain that the sums of numerators over sums of denominators isn't the same as the mean of ratios?
Is there a penalty for switching targets?
Fair Use of Photos as a Derivative Work
What is a practical use for this metric?
Vim freezes after Ctrl-S
Narrow streets behind houses
Scorched receptacle
Silent kick stand? How to?
In 1700s, why was 'books that never read' grammatical?
How come the Russian cognate for the Czech word "čerstvý" (fresh) means entirely the opposite thing (stale)?
Proof of bound on optimal TSP tour length in rectangular region
How slow was the 6502 Basic compared to Assembly
Why didn't Snape ask Dumbledore why he let "Moody" search his office?
Meaning/Translation of title "The Light Fantastic" By Terry Pratchet
How to prove (A v B), (A → C), (B → D) therefore (C v D)
What's the difference between motherboard and chassis?
Lilypond - autochange with alternative staves / turning point
Power Adapter for Traveling to Scotland (I live in the US)
How fast are we moving relative to the CMB?
What should I do if I find a mistake in my submitted master's thesis?
Anonymous reviewer disclosed his identity. Should I thank him by name?
What does the whole letter in Black Panther by Prince NJobu say?
What is the origin of the minced oath “Jiminy”?
Is insurance company’s preferred auto shop biased?
How to change Ubuntu Budgie login screen background?
How do I change the wallpaper of the login screen?Changing login screen wallpaperSettings schema 'x.dm.slick-greeter' is not installedChanging login background automaticallyLogin screen image not showing on Ubuntu 18.04Log-in screen background (on Ubuntu 18.04) is not changing though I made necessary changes in necessary filesLogin screen wallpaper is not working in ubuntuChange color of background on login screenubuntu will not let me set login page backgroundHow do I change the login screen in Ubuntu 16.04+?Ubuntu Budgie: Black login-screen
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I want to change the Ubuntu Budgie login screen background to the one I'm currently using on my account; Just like it was with the previous Ubuntu versions with Unity with the draw-user-backgrounds option.
I already tried searching for that option or anything with "background" on it with dconf-editor but found nothing.
18.04 login-screen budgie
add a comment
|
I want to change the Ubuntu Budgie login screen background to the one I'm currently using on my account; Just like it was with the previous Ubuntu versions with Unity with the draw-user-backgrounds option.
I already tried searching for that option or anything with "background" on it with dconf-editor but found nothing.
18.04 login-screen budgie
add a comment
|
I want to change the Ubuntu Budgie login screen background to the one I'm currently using on my account; Just like it was with the previous Ubuntu versions with Unity with the draw-user-backgrounds option.
I already tried searching for that option or anything with "background" on it with dconf-editor but found nothing.
18.04 login-screen budgie
I want to change the Ubuntu Budgie login screen background to the one I'm currently using on my account; Just like it was with the previous Ubuntu versions with Unity with the draw-user-backgrounds option.
I already tried searching for that option or anything with "background" on it with dconf-editor but found nothing.
18.04 login-screen budgie
18.04 login-screen budgie
asked Jun 2 '18 at 14:18
ArielAriel
481 gold badge1 silver badge8 bronze badges
481 gold badge1 silver badge8 bronze badges
add a comment
|
add a comment
|
8 Answers
8
active
oldest
votes
Open the Login Window app in the menu under Administration.
If it is missing from the menu then install it:
sudo apt install lightdm-settings
Enter your credentials when prompted. Click on the default background image icon, then navigate to /. Click on home>username>Pictures. Select your desired pic, click Open the in upper right corner, close the app. Log off and you will see your desktop background on the Login screen.
Thanks.
3
Is there some dependency oflightdm-settingsthat isn't specified in the package? On my system, which was upgraded from 16.04, I've installedlightdm-settings, but when I launch the Login Window menu item I get prompted for my password but then no window appears.
– rakslice
Sep 8 '18 at 22:24
@rakslice I experience the exact same thing, but my system is a clean install.
– beruic
Sep 27 '18 at 19:36
3
lightdm-settings doesn't seem to work in 18.04, it just causes multiple crashes in python on my machine each time I try to open it.
– JamesBB
Oct 1 '18 at 12:07
add a comment
|
I have simple Ubuntu 18.04.1
In my opinion the best way to do this:
step1: make backup of the file
/usr/share/gnome-shell/theme/ubuntu.css- if you have another desktop for ubuntu you can find fileubuntu.cssjust using commandlocate==>locate ubuntu.css
step2:
vim /usr/share/gnome-shell/theme/ubuntu.cssand find part below
#lockDialogGroup
background: #2c001e url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat;
step3: change it to
#lockDialogGroup
background: #2c001e url(file:///usr/share/backgrounds/warty-final-ubuntu.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
clarification: as you can see, we changed
"background: #2c001e url(resource://" part to the ==> "background: #2c001e url(file://"
and then set up path for the image.
I used /usr/share/backgrounds/ for the path with image. Also I added some css properties to center the image.
This is only the css file configuration. That's it)
This is the only solution that worked on 18.04.1-Ubuntu, it is conformed. I have wasted 2hours of changing other files no luck, and here it works. Thank You !
– Mirosław Drdzeń
Apr 16 at 23:08
Be alarmed, that your background-image location must be in an unencrypted part of your hard drive.
– rubo77
May 24 at 7:07
add a comment
|
I tried all of those and none worked. This does, for sure:
As root user, just copy your_image.png to /usr/share/backgrounds and ....
# cd /usr/share/backgrounds
# cp warty-final-ubuntu.png warty-final-ubuntu.png.stock
# rm warty-final-ubuntu.png
# ln -s your_image.png warty-final-ubuntu.png
# reboot
...where your_image.png is the name of the actual image you want to display. The warty one is big: 4096 x 2304. I matched mine to the same size.
add a comment
|
lightdm-settings is a good choice, as well as, you can try
sudo xhost +SI:localuser:lightdm
sudo su lightdm -s /bin/bash
dconf-editor
In dconf-editor find x/dm/slick-greeter you can edit whatever you want
Cheers
add a comment
|
- Run Terminal with Ctrl + Alt + T
- Run nautilus with sudo by doing (sudo nautilus) - without the brackets
- Copy your desired background image to /usr/share/backgrounds/
- Go to /etc/alternatives/gdm3.css and open with Text Editor
Change This
#lockDialogGroup
background: #2c001e url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat;
To This
#lockDialogGroup
background: #2c001e url(file:///usr/share/backgrounds/yourimage.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
Click 'Save' when you're done.
Restart your PC
add a comment
|
had the same problem when upgrading to 18.04. 64bit. And the answer is, it depends. Start with 'cat /etc/X11/default-display-manager' and check which greeter manager you got.
Case1. If using gnome-greeter (gdm3, and for example with ubuntu-unity-desktop which is in my case) modify the ubuntu.css as mentioned before and make sure you have replaced 'resource' ident by 'file', otherwise it won't work no matter how hard you try (i promise). Restart your machine. (gnome-tweak-tool works for modifying the background etc.)
Case2. If using the lightdm greeter one can use 'sudo apt install lightdm-gtk-greeter-settings' an adapt changes as needed. Two alternatives are the dconf editor (search for 'greeter', what will show you all the config settings available, and the 'sudo apt install unity-tweak-tool'.
Change between your greeter managers and the different ways changing styles with 'sudo dpkg-reconfigure lightdm' or 'sudo dpkg-reconfigure gdm3'.
Hope it helps
add a comment
|
After the upgrade to 18.04 I was unable to change the login/lock screen too. So I just replaced the warty-final-ubuntu.png in /usr/share/backgrounds using sudo nautilus with a picture with the same resolution 4096x2304. I renamed it the same : warty-final-ubuntu.png, and deleted the old one. This was fastest and easiest solution...
add a comment
|
Install gnome-tweak-tool:
sudo apt install gnome-tweak-toolClick on the app grid icon, type in:
gnome-tweak-toolOpen (click on) the
gnome-tweak-toolapp.Click on "Appearance".
On the right-hand pane, find "Background." Click on "image" below it and find the jpg file you want for your Ubuntu background.
On the right-hand pane, find "Lock Screen." Click on "image" below it and find the jpg file you want for your Lock Screen page.
Lots of other tools in gnome-tweak-tool that you might like, also.
3
It doesn't help with the "login screen".
– Omar Tariq
Aug 14 '18 at 9:26
@OmarTariq Totally agree with you. In 18.04
– SaidbakR
Oct 21 '18 at 20:39
add a comment
|
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1042942%2fhow-to-change-ubuntu-budgie-login-screen-background%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
8 Answers
8
active
oldest
votes
8 Answers
8
active
oldest
votes
active
oldest
votes
active
oldest
votes
Open the Login Window app in the menu under Administration.
If it is missing from the menu then install it:
sudo apt install lightdm-settings
Enter your credentials when prompted. Click on the default background image icon, then navigate to /. Click on home>username>Pictures. Select your desired pic, click Open the in upper right corner, close the app. Log off and you will see your desktop background on the Login screen.
Thanks.
3
Is there some dependency oflightdm-settingsthat isn't specified in the package? On my system, which was upgraded from 16.04, I've installedlightdm-settings, but when I launch the Login Window menu item I get prompted for my password but then no window appears.
– rakslice
Sep 8 '18 at 22:24
@rakslice I experience the exact same thing, but my system is a clean install.
– beruic
Sep 27 '18 at 19:36
3
lightdm-settings doesn't seem to work in 18.04, it just causes multiple crashes in python on my machine each time I try to open it.
– JamesBB
Oct 1 '18 at 12:07
add a comment
|
Open the Login Window app in the menu under Administration.
If it is missing from the menu then install it:
sudo apt install lightdm-settings
Enter your credentials when prompted. Click on the default background image icon, then navigate to /. Click on home>username>Pictures. Select your desired pic, click Open the in upper right corner, close the app. Log off and you will see your desktop background on the Login screen.
Thanks.
3
Is there some dependency oflightdm-settingsthat isn't specified in the package? On my system, which was upgraded from 16.04, I've installedlightdm-settings, but when I launch the Login Window menu item I get prompted for my password but then no window appears.
– rakslice
Sep 8 '18 at 22:24
@rakslice I experience the exact same thing, but my system is a clean install.
– beruic
Sep 27 '18 at 19:36
3
lightdm-settings doesn't seem to work in 18.04, it just causes multiple crashes in python on my machine each time I try to open it.
– JamesBB
Oct 1 '18 at 12:07
add a comment
|
Open the Login Window app in the menu under Administration.
If it is missing from the menu then install it:
sudo apt install lightdm-settings
Enter your credentials when prompted. Click on the default background image icon, then navigate to /. Click on home>username>Pictures. Select your desired pic, click Open the in upper right corner, close the app. Log off and you will see your desktop background on the Login screen.
Thanks.
Open the Login Window app in the menu under Administration.
If it is missing from the menu then install it:
sudo apt install lightdm-settings
Enter your credentials when prompted. Click on the default background image icon, then navigate to /. Click on home>username>Pictures. Select your desired pic, click Open the in upper right corner, close the app. Log off and you will see your desktop background on the Login screen.
Thanks.
edited Jun 4 '18 at 15:06
fossfreedom♦
153k39 gold badges341 silver badges384 bronze badges
153k39 gold badges341 silver badges384 bronze badges
answered Jun 2 '18 at 20:40
David AlvaradoDavid Alvarado
1313 bronze badges
1313 bronze badges
3
Is there some dependency oflightdm-settingsthat isn't specified in the package? On my system, which was upgraded from 16.04, I've installedlightdm-settings, but when I launch the Login Window menu item I get prompted for my password but then no window appears.
– rakslice
Sep 8 '18 at 22:24
@rakslice I experience the exact same thing, but my system is a clean install.
– beruic
Sep 27 '18 at 19:36
3
lightdm-settings doesn't seem to work in 18.04, it just causes multiple crashes in python on my machine each time I try to open it.
– JamesBB
Oct 1 '18 at 12:07
add a comment
|
3
Is there some dependency oflightdm-settingsthat isn't specified in the package? On my system, which was upgraded from 16.04, I've installedlightdm-settings, but when I launch the Login Window menu item I get prompted for my password but then no window appears.
– rakslice
Sep 8 '18 at 22:24
@rakslice I experience the exact same thing, but my system is a clean install.
– beruic
Sep 27 '18 at 19:36
3
lightdm-settings doesn't seem to work in 18.04, it just causes multiple crashes in python on my machine each time I try to open it.
– JamesBB
Oct 1 '18 at 12:07
3
3
Is there some dependency of
lightdm-settings that isn't specified in the package? On my system, which was upgraded from 16.04, I've installed lightdm-settings, but when I launch the Login Window menu item I get prompted for my password but then no window appears.– rakslice
Sep 8 '18 at 22:24
Is there some dependency of
lightdm-settings that isn't specified in the package? On my system, which was upgraded from 16.04, I've installed lightdm-settings, but when I launch the Login Window menu item I get prompted for my password but then no window appears.– rakslice
Sep 8 '18 at 22:24
@rakslice I experience the exact same thing, but my system is a clean install.
– beruic
Sep 27 '18 at 19:36
@rakslice I experience the exact same thing, but my system is a clean install.
– beruic
Sep 27 '18 at 19:36
3
3
lightdm-settings doesn't seem to work in 18.04, it just causes multiple crashes in python on my machine each time I try to open it.
– JamesBB
Oct 1 '18 at 12:07
lightdm-settings doesn't seem to work in 18.04, it just causes multiple crashes in python on my machine each time I try to open it.
– JamesBB
Oct 1 '18 at 12:07
add a comment
|
I have simple Ubuntu 18.04.1
In my opinion the best way to do this:
step1: make backup of the file
/usr/share/gnome-shell/theme/ubuntu.css- if you have another desktop for ubuntu you can find fileubuntu.cssjust using commandlocate==>locate ubuntu.css
step2:
vim /usr/share/gnome-shell/theme/ubuntu.cssand find part below
#lockDialogGroup
background: #2c001e url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat;
step3: change it to
#lockDialogGroup
background: #2c001e url(file:///usr/share/backgrounds/warty-final-ubuntu.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
clarification: as you can see, we changed
"background: #2c001e url(resource://" part to the ==> "background: #2c001e url(file://"
and then set up path for the image.
I used /usr/share/backgrounds/ for the path with image. Also I added some css properties to center the image.
This is only the css file configuration. That's it)
This is the only solution that worked on 18.04.1-Ubuntu, it is conformed. I have wasted 2hours of changing other files no luck, and here it works. Thank You !
– Mirosław Drdzeń
Apr 16 at 23:08
Be alarmed, that your background-image location must be in an unencrypted part of your hard drive.
– rubo77
May 24 at 7:07
add a comment
|
I have simple Ubuntu 18.04.1
In my opinion the best way to do this:
step1: make backup of the file
/usr/share/gnome-shell/theme/ubuntu.css- if you have another desktop for ubuntu you can find fileubuntu.cssjust using commandlocate==>locate ubuntu.css
step2:
vim /usr/share/gnome-shell/theme/ubuntu.cssand find part below
#lockDialogGroup
background: #2c001e url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat;
step3: change it to
#lockDialogGroup
background: #2c001e url(file:///usr/share/backgrounds/warty-final-ubuntu.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
clarification: as you can see, we changed
"background: #2c001e url(resource://" part to the ==> "background: #2c001e url(file://"
and then set up path for the image.
I used /usr/share/backgrounds/ for the path with image. Also I added some css properties to center the image.
This is only the css file configuration. That's it)
This is the only solution that worked on 18.04.1-Ubuntu, it is conformed. I have wasted 2hours of changing other files no luck, and here it works. Thank You !
– Mirosław Drdzeń
Apr 16 at 23:08
Be alarmed, that your background-image location must be in an unencrypted part of your hard drive.
– rubo77
May 24 at 7:07
add a comment
|
I have simple Ubuntu 18.04.1
In my opinion the best way to do this:
step1: make backup of the file
/usr/share/gnome-shell/theme/ubuntu.css- if you have another desktop for ubuntu you can find fileubuntu.cssjust using commandlocate==>locate ubuntu.css
step2:
vim /usr/share/gnome-shell/theme/ubuntu.cssand find part below
#lockDialogGroup
background: #2c001e url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat;
step3: change it to
#lockDialogGroup
background: #2c001e url(file:///usr/share/backgrounds/warty-final-ubuntu.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
clarification: as you can see, we changed
"background: #2c001e url(resource://" part to the ==> "background: #2c001e url(file://"
and then set up path for the image.
I used /usr/share/backgrounds/ for the path with image. Also I added some css properties to center the image.
This is only the css file configuration. That's it)
I have simple Ubuntu 18.04.1
In my opinion the best way to do this:
step1: make backup of the file
/usr/share/gnome-shell/theme/ubuntu.css- if you have another desktop for ubuntu you can find fileubuntu.cssjust using commandlocate==>locate ubuntu.css
step2:
vim /usr/share/gnome-shell/theme/ubuntu.cssand find part below
#lockDialogGroup
background: #2c001e url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat;
step3: change it to
#lockDialogGroup
background: #2c001e url(file:///usr/share/backgrounds/warty-final-ubuntu.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
clarification: as you can see, we changed
"background: #2c001e url(resource://" part to the ==> "background: #2c001e url(file://"
and then set up path for the image.
I used /usr/share/backgrounds/ for the path with image. Also I added some css properties to center the image.
This is only the css file configuration. That's it)
edited Apr 17 at 5:15
answered Sep 3 '18 at 19:11
fuserfuser
4022 gold badges8 silver badges13 bronze badges
4022 gold badges8 silver badges13 bronze badges
This is the only solution that worked on 18.04.1-Ubuntu, it is conformed. I have wasted 2hours of changing other files no luck, and here it works. Thank You !
– Mirosław Drdzeń
Apr 16 at 23:08
Be alarmed, that your background-image location must be in an unencrypted part of your hard drive.
– rubo77
May 24 at 7:07
add a comment
|
This is the only solution that worked on 18.04.1-Ubuntu, it is conformed. I have wasted 2hours of changing other files no luck, and here it works. Thank You !
– Mirosław Drdzeń
Apr 16 at 23:08
Be alarmed, that your background-image location must be in an unencrypted part of your hard drive.
– rubo77
May 24 at 7:07
This is the only solution that worked on 18.04.1-Ubuntu, it is conformed. I have wasted 2hours of changing other files no luck, and here it works. Thank You !
– Mirosław Drdzeń
Apr 16 at 23:08
This is the only solution that worked on 18.04.1-Ubuntu, it is conformed. I have wasted 2hours of changing other files no luck, and here it works. Thank You !
– Mirosław Drdzeń
Apr 16 at 23:08
Be alarmed, that your background-image location must be in an unencrypted part of your hard drive.
– rubo77
May 24 at 7:07
Be alarmed, that your background-image location must be in an unencrypted part of your hard drive.
– rubo77
May 24 at 7:07
add a comment
|
I tried all of those and none worked. This does, for sure:
As root user, just copy your_image.png to /usr/share/backgrounds and ....
# cd /usr/share/backgrounds
# cp warty-final-ubuntu.png warty-final-ubuntu.png.stock
# rm warty-final-ubuntu.png
# ln -s your_image.png warty-final-ubuntu.png
# reboot
...where your_image.png is the name of the actual image you want to display. The warty one is big: 4096 x 2304. I matched mine to the same size.
add a comment
|
I tried all of those and none worked. This does, for sure:
As root user, just copy your_image.png to /usr/share/backgrounds and ....
# cd /usr/share/backgrounds
# cp warty-final-ubuntu.png warty-final-ubuntu.png.stock
# rm warty-final-ubuntu.png
# ln -s your_image.png warty-final-ubuntu.png
# reboot
...where your_image.png is the name of the actual image you want to display. The warty one is big: 4096 x 2304. I matched mine to the same size.
add a comment
|
I tried all of those and none worked. This does, for sure:
As root user, just copy your_image.png to /usr/share/backgrounds and ....
# cd /usr/share/backgrounds
# cp warty-final-ubuntu.png warty-final-ubuntu.png.stock
# rm warty-final-ubuntu.png
# ln -s your_image.png warty-final-ubuntu.png
# reboot
...where your_image.png is the name of the actual image you want to display. The warty one is big: 4096 x 2304. I matched mine to the same size.
I tried all of those and none worked. This does, for sure:
As root user, just copy your_image.png to /usr/share/backgrounds and ....
# cd /usr/share/backgrounds
# cp warty-final-ubuntu.png warty-final-ubuntu.png.stock
# rm warty-final-ubuntu.png
# ln -s your_image.png warty-final-ubuntu.png
# reboot
...where your_image.png is the name of the actual image you want to display. The warty one is big: 4096 x 2304. I matched mine to the same size.
edited Oct 27 '18 at 23:49
abu_bua
4,9588 gold badges18 silver badges36 bronze badges
4,9588 gold badges18 silver badges36 bronze badges
answered Oct 27 '18 at 23:24
Bud HovellBud Hovell
211 bronze badge
211 bronze badge
add a comment
|
add a comment
|
lightdm-settings is a good choice, as well as, you can try
sudo xhost +SI:localuser:lightdm
sudo su lightdm -s /bin/bash
dconf-editor
In dconf-editor find x/dm/slick-greeter you can edit whatever you want
Cheers
add a comment
|
lightdm-settings is a good choice, as well as, you can try
sudo xhost +SI:localuser:lightdm
sudo su lightdm -s /bin/bash
dconf-editor
In dconf-editor find x/dm/slick-greeter you can edit whatever you want
Cheers
add a comment
|
lightdm-settings is a good choice, as well as, you can try
sudo xhost +SI:localuser:lightdm
sudo su lightdm -s /bin/bash
dconf-editor
In dconf-editor find x/dm/slick-greeter you can edit whatever you want
Cheers
lightdm-settings is a good choice, as well as, you can try
sudo xhost +SI:localuser:lightdm
sudo su lightdm -s /bin/bash
dconf-editor
In dconf-editor find x/dm/slick-greeter you can edit whatever you want
Cheers
answered Jun 24 '18 at 11:17
user706142
add a comment
|
add a comment
|
- Run Terminal with Ctrl + Alt + T
- Run nautilus with sudo by doing (sudo nautilus) - without the brackets
- Copy your desired background image to /usr/share/backgrounds/
- Go to /etc/alternatives/gdm3.css and open with Text Editor
Change This
#lockDialogGroup
background: #2c001e url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat;
To This
#lockDialogGroup
background: #2c001e url(file:///usr/share/backgrounds/yourimage.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
Click 'Save' when you're done.
Restart your PC
add a comment
|
- Run Terminal with Ctrl + Alt + T
- Run nautilus with sudo by doing (sudo nautilus) - without the brackets
- Copy your desired background image to /usr/share/backgrounds/
- Go to /etc/alternatives/gdm3.css and open with Text Editor
Change This
#lockDialogGroup
background: #2c001e url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat;
To This
#lockDialogGroup
background: #2c001e url(file:///usr/share/backgrounds/yourimage.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
Click 'Save' when you're done.
Restart your PC
add a comment
|
- Run Terminal with Ctrl + Alt + T
- Run nautilus with sudo by doing (sudo nautilus) - without the brackets
- Copy your desired background image to /usr/share/backgrounds/
- Go to /etc/alternatives/gdm3.css and open with Text Editor
Change This
#lockDialogGroup
background: #2c001e url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat;
To This
#lockDialogGroup
background: #2c001e url(file:///usr/share/backgrounds/yourimage.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
Click 'Save' when you're done.
Restart your PC
- Run Terminal with Ctrl + Alt + T
- Run nautilus with sudo by doing (sudo nautilus) - without the brackets
- Copy your desired background image to /usr/share/backgrounds/
- Go to /etc/alternatives/gdm3.css and open with Text Editor
Change This
#lockDialogGroup
background: #2c001e url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat;
To This
#lockDialogGroup
background: #2c001e url(file:///usr/share/backgrounds/yourimage.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
Click 'Save' when you're done.
Restart your PC
answered Oct 23 '18 at 9:10
Mbuodile ObiosioMbuodile Obiosio
1263 bronze badges
1263 bronze badges
add a comment
|
add a comment
|
had the same problem when upgrading to 18.04. 64bit. And the answer is, it depends. Start with 'cat /etc/X11/default-display-manager' and check which greeter manager you got.
Case1. If using gnome-greeter (gdm3, and for example with ubuntu-unity-desktop which is in my case) modify the ubuntu.css as mentioned before and make sure you have replaced 'resource' ident by 'file', otherwise it won't work no matter how hard you try (i promise). Restart your machine. (gnome-tweak-tool works for modifying the background etc.)
Case2. If using the lightdm greeter one can use 'sudo apt install lightdm-gtk-greeter-settings' an adapt changes as needed. Two alternatives are the dconf editor (search for 'greeter', what will show you all the config settings available, and the 'sudo apt install unity-tweak-tool'.
Change between your greeter managers and the different ways changing styles with 'sudo dpkg-reconfigure lightdm' or 'sudo dpkg-reconfigure gdm3'.
Hope it helps
add a comment
|
had the same problem when upgrading to 18.04. 64bit. And the answer is, it depends. Start with 'cat /etc/X11/default-display-manager' and check which greeter manager you got.
Case1. If using gnome-greeter (gdm3, and for example with ubuntu-unity-desktop which is in my case) modify the ubuntu.css as mentioned before and make sure you have replaced 'resource' ident by 'file', otherwise it won't work no matter how hard you try (i promise). Restart your machine. (gnome-tweak-tool works for modifying the background etc.)
Case2. If using the lightdm greeter one can use 'sudo apt install lightdm-gtk-greeter-settings' an adapt changes as needed. Two alternatives are the dconf editor (search for 'greeter', what will show you all the config settings available, and the 'sudo apt install unity-tweak-tool'.
Change between your greeter managers and the different ways changing styles with 'sudo dpkg-reconfigure lightdm' or 'sudo dpkg-reconfigure gdm3'.
Hope it helps
add a comment
|
had the same problem when upgrading to 18.04. 64bit. And the answer is, it depends. Start with 'cat /etc/X11/default-display-manager' and check which greeter manager you got.
Case1. If using gnome-greeter (gdm3, and for example with ubuntu-unity-desktop which is in my case) modify the ubuntu.css as mentioned before and make sure you have replaced 'resource' ident by 'file', otherwise it won't work no matter how hard you try (i promise). Restart your machine. (gnome-tweak-tool works for modifying the background etc.)
Case2. If using the lightdm greeter one can use 'sudo apt install lightdm-gtk-greeter-settings' an adapt changes as needed. Two alternatives are the dconf editor (search for 'greeter', what will show you all the config settings available, and the 'sudo apt install unity-tweak-tool'.
Change between your greeter managers and the different ways changing styles with 'sudo dpkg-reconfigure lightdm' or 'sudo dpkg-reconfigure gdm3'.
Hope it helps
had the same problem when upgrading to 18.04. 64bit. And the answer is, it depends. Start with 'cat /etc/X11/default-display-manager' and check which greeter manager you got.
Case1. If using gnome-greeter (gdm3, and for example with ubuntu-unity-desktop which is in my case) modify the ubuntu.css as mentioned before and make sure you have replaced 'resource' ident by 'file', otherwise it won't work no matter how hard you try (i promise). Restart your machine. (gnome-tweak-tool works for modifying the background etc.)
Case2. If using the lightdm greeter one can use 'sudo apt install lightdm-gtk-greeter-settings' an adapt changes as needed. Two alternatives are the dconf editor (search for 'greeter', what will show you all the config settings available, and the 'sudo apt install unity-tweak-tool'.
Change between your greeter managers and the different ways changing styles with 'sudo dpkg-reconfigure lightdm' or 'sudo dpkg-reconfigure gdm3'.
Hope it helps
answered Mar 27 at 10:26
M.T.M.T.
111 bronze badge
111 bronze badge
add a comment
|
add a comment
|
After the upgrade to 18.04 I was unable to change the login/lock screen too. So I just replaced the warty-final-ubuntu.png in /usr/share/backgrounds using sudo nautilus with a picture with the same resolution 4096x2304. I renamed it the same : warty-final-ubuntu.png, and deleted the old one. This was fastest and easiest solution...
add a comment
|
After the upgrade to 18.04 I was unable to change the login/lock screen too. So I just replaced the warty-final-ubuntu.png in /usr/share/backgrounds using sudo nautilus with a picture with the same resolution 4096x2304. I renamed it the same : warty-final-ubuntu.png, and deleted the old one. This was fastest and easiest solution...
add a comment
|
After the upgrade to 18.04 I was unable to change the login/lock screen too. So I just replaced the warty-final-ubuntu.png in /usr/share/backgrounds using sudo nautilus with a picture with the same resolution 4096x2304. I renamed it the same : warty-final-ubuntu.png, and deleted the old one. This was fastest and easiest solution...
After the upgrade to 18.04 I was unable to change the login/lock screen too. So I just replaced the warty-final-ubuntu.png in /usr/share/backgrounds using sudo nautilus with a picture with the same resolution 4096x2304. I renamed it the same : warty-final-ubuntu.png, and deleted the old one. This was fastest and easiest solution...
edited Mar 3 at 12:38
tinlyx
1,1162 gold badges18 silver badges27 bronze badges
1,1162 gold badges18 silver badges27 bronze badges
answered Mar 3 at 5:59
Emil PetrovEmil Petrov
11 bronze badge
11 bronze badge
add a comment
|
add a comment
|
Install gnome-tweak-tool:
sudo apt install gnome-tweak-toolClick on the app grid icon, type in:
gnome-tweak-toolOpen (click on) the
gnome-tweak-toolapp.Click on "Appearance".
On the right-hand pane, find "Background." Click on "image" below it and find the jpg file you want for your Ubuntu background.
On the right-hand pane, find "Lock Screen." Click on "image" below it and find the jpg file you want for your Lock Screen page.
Lots of other tools in gnome-tweak-tool that you might like, also.
3
It doesn't help with the "login screen".
– Omar Tariq
Aug 14 '18 at 9:26
@OmarTariq Totally agree with you. In 18.04
– SaidbakR
Oct 21 '18 at 20:39
add a comment
|
Install gnome-tweak-tool:
sudo apt install gnome-tweak-toolClick on the app grid icon, type in:
gnome-tweak-toolOpen (click on) the
gnome-tweak-toolapp.Click on "Appearance".
On the right-hand pane, find "Background." Click on "image" below it and find the jpg file you want for your Ubuntu background.
On the right-hand pane, find "Lock Screen." Click on "image" below it and find the jpg file you want for your Lock Screen page.
Lots of other tools in gnome-tweak-tool that you might like, also.
3
It doesn't help with the "login screen".
– Omar Tariq
Aug 14 '18 at 9:26
@OmarTariq Totally agree with you. In 18.04
– SaidbakR
Oct 21 '18 at 20:39
add a comment
|
Install gnome-tweak-tool:
sudo apt install gnome-tweak-toolClick on the app grid icon, type in:
gnome-tweak-toolOpen (click on) the
gnome-tweak-toolapp.Click on "Appearance".
On the right-hand pane, find "Background." Click on "image" below it and find the jpg file you want for your Ubuntu background.
On the right-hand pane, find "Lock Screen." Click on "image" below it and find the jpg file you want for your Lock Screen page.
Lots of other tools in gnome-tweak-tool that you might like, also.
Install gnome-tweak-tool:
sudo apt install gnome-tweak-toolClick on the app grid icon, type in:
gnome-tweak-toolOpen (click on) the
gnome-tweak-toolapp.Click on "Appearance".
On the right-hand pane, find "Background." Click on "image" below it and find the jpg file you want for your Ubuntu background.
On the right-hand pane, find "Lock Screen." Click on "image" below it and find the jpg file you want for your Lock Screen page.
Lots of other tools in gnome-tweak-tool that you might like, also.
edited Jul 30 '18 at 20:00
Damian T.
3942 silver badges9 bronze badges
3942 silver badges9 bronze badges
answered Jul 4 '18 at 15:01
Old Jimma from the Old CountryOld Jimma from the Old Country
51 bronze badge
51 bronze badge
3
It doesn't help with the "login screen".
– Omar Tariq
Aug 14 '18 at 9:26
@OmarTariq Totally agree with you. In 18.04
– SaidbakR
Oct 21 '18 at 20:39
add a comment
|
3
It doesn't help with the "login screen".
– Omar Tariq
Aug 14 '18 at 9:26
@OmarTariq Totally agree with you. In 18.04
– SaidbakR
Oct 21 '18 at 20:39
3
3
It doesn't help with the "login screen".
– Omar Tariq
Aug 14 '18 at 9:26
It doesn't help with the "login screen".
– Omar Tariq
Aug 14 '18 at 9:26
@OmarTariq Totally agree with you. In 18.04
– SaidbakR
Oct 21 '18 at 20:39
@OmarTariq Totally agree with you. In 18.04
– SaidbakR
Oct 21 '18 at 20:39
add a comment
|
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1042942%2fhow-to-change-ubuntu-budgie-login-screen-background%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown