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;









7















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.










share|improve this question






























    7















    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.










    share|improve this question


























      7












      7








      7


      7






      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.










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jun 2 '18 at 14:18









      ArielAriel

      481 gold badge1 silver badge8 bronze badges




      481 gold badge1 silver badge8 bronze badges























          8 Answers
          8






          active

          oldest

          votes


















          9
















          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.






          share|improve this answer






















          • 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












          • @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


















          13
















          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 file ubuntu.css just using command locate ==> locate ubuntu.css



          step2: vim /usr/share/gnome-shell/theme/ubuntu.css and 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)






          share|improve this answer



























          • 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


















          2
















          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.






          share|improve this answer


































            1
















            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






            share|improve this answer
































              1
















              • 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






              share|improve this answer
































                1
















                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






                share|improve this answer
































                  0
















                  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...






                  share|improve this answer


































                    -2
















                    1. Install gnome-tweak-tool: sudo apt install gnome-tweak-tool


                    2. Click on the app grid icon, type in: gnome-tweak-tool


                    3. Open (click on) the gnome-tweak-tool app.


                    4. Click on "Appearance".


                    5. On the right-hand pane, find "Background." Click on "image" below it and find the jpg file you want for your Ubuntu background.


                    6. 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.






                    share|improve this answer






















                    • 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













                    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
                    );



                    );














                    draft saved

                    draft discarded
















                    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









                    9
















                    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.






                    share|improve this answer






















                    • 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












                    • @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















                    9
















                    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.






                    share|improve this answer






















                    • 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












                    • @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













                    9














                    9










                    9









                    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.






                    share|improve this answer















                    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.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    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 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






                    • 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





                      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






                    • 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













                    13
















                    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 file ubuntu.css just using command locate ==> locate ubuntu.css



                    step2: vim /usr/share/gnome-shell/theme/ubuntu.css and 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)






                    share|improve this answer



























                    • 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















                    13
















                    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 file ubuntu.css just using command locate ==> locate ubuntu.css



                    step2: vim /usr/share/gnome-shell/theme/ubuntu.css and 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)






                    share|improve this answer



























                    • 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













                    13














                    13










                    13









                    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 file ubuntu.css just using command locate ==> locate ubuntu.css



                    step2: vim /usr/share/gnome-shell/theme/ubuntu.css and 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)






                    share|improve this answer















                    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 file ubuntu.css just using command locate ==> locate ubuntu.css



                    step2: vim /usr/share/gnome-shell/theme/ubuntu.css and 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)







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    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

















                    • 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











                    2
















                    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.






                    share|improve this answer































                      2
















                      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.






                      share|improve this answer





























                        2














                        2










                        2









                        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.






                        share|improve this answer















                        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.







                        share|improve this answer














                        share|improve this answer



                        share|improve this answer








                        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
























                            1
















                            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






                            share|improve this answer





























                              1
















                              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






                              share|improve this answer



























                                1














                                1










                                1









                                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






                                share|improve this answer













                                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







                                share|improve this answer












                                share|improve this answer



                                share|improve this answer










                                answered Jun 24 '18 at 11:17







                                user706142































                                    1
















                                    • 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






                                    share|improve this answer





























                                      1
















                                      • 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






                                      share|improve this answer



























                                        1














                                        1










                                        1









                                        • 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






                                        share|improve this answer













                                        • 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







                                        share|improve this answer












                                        share|improve this answer



                                        share|improve this answer










                                        answered Oct 23 '18 at 9:10









                                        Mbuodile ObiosioMbuodile Obiosio

                                        1263 bronze badges




                                        1263 bronze badges
























                                            1
















                                            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






                                            share|improve this answer





























                                              1
















                                              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






                                              share|improve this answer



























                                                1














                                                1










                                                1









                                                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






                                                share|improve this answer













                                                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







                                                share|improve this answer












                                                share|improve this answer



                                                share|improve this answer










                                                answered Mar 27 at 10:26









                                                M.T.M.T.

                                                111 bronze badge




                                                111 bronze badge
























                                                    0
















                                                    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...






                                                    share|improve this answer































                                                      0
















                                                      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...






                                                      share|improve this answer





























                                                        0














                                                        0










                                                        0









                                                        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...






                                                        share|improve this answer















                                                        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...







                                                        share|improve this answer














                                                        share|improve this answer



                                                        share|improve this answer








                                                        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
























                                                            -2
















                                                            1. Install gnome-tweak-tool: sudo apt install gnome-tweak-tool


                                                            2. Click on the app grid icon, type in: gnome-tweak-tool


                                                            3. Open (click on) the gnome-tweak-tool app.


                                                            4. Click on "Appearance".


                                                            5. On the right-hand pane, find "Background." Click on "image" below it and find the jpg file you want for your Ubuntu background.


                                                            6. 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.






                                                            share|improve this answer






















                                                            • 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
















                                                            -2
















                                                            1. Install gnome-tweak-tool: sudo apt install gnome-tweak-tool


                                                            2. Click on the app grid icon, type in: gnome-tweak-tool


                                                            3. Open (click on) the gnome-tweak-tool app.


                                                            4. Click on "Appearance".


                                                            5. On the right-hand pane, find "Background." Click on "image" below it and find the jpg file you want for your Ubuntu background.


                                                            6. 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.






                                                            share|improve this answer






















                                                            • 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














                                                            -2














                                                            -2










                                                            -2









                                                            1. Install gnome-tweak-tool: sudo apt install gnome-tweak-tool


                                                            2. Click on the app grid icon, type in: gnome-tweak-tool


                                                            3. Open (click on) the gnome-tweak-tool app.


                                                            4. Click on "Appearance".


                                                            5. On the right-hand pane, find "Background." Click on "image" below it and find the jpg file you want for your Ubuntu background.


                                                            6. 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.






                                                            share|improve this answer















                                                            1. Install gnome-tweak-tool: sudo apt install gnome-tweak-tool


                                                            2. Click on the app grid icon, type in: gnome-tweak-tool


                                                            3. Open (click on) the gnome-tweak-tool app.


                                                            4. Click on "Appearance".


                                                            5. On the right-hand pane, find "Background." Click on "image" below it and find the jpg file you want for your Ubuntu background.


                                                            6. 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.







                                                            share|improve this answer














                                                            share|improve this answer



                                                            share|improve this answer








                                                            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













                                                            • 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



















                                                            draft saved

                                                            draft discarded















































                                                            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.




                                                            draft saved


                                                            draft discarded














                                                            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





















































                                                            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







                                                            Popular posts from this blog

                                                            Distance measures on a map of a game The 2019 Stack Overflow Developer Survey Results Are Inmin distance in a graphShortest distance path on contour plotHow to plot a tilted map?Finding points outside of a diskDelaunay link distanceAnnulus from GeoDisks: drawing a ring on a mapNegative Correlation DistanceFind distance along a path (GPS coordinates)Finding position at given distance in a GeoPathMathematics behind distance estimation using camera

                                                            How to get a smooth, uniform ParametricPlot of a 2D Region?How to plot a complicated Region?How to exclude a region from ParametricPlotHow discretize a region placing vertices on a specific non-uniform gridHow to transform a Plot or a ParametricPlot into a RegionHow can I get a smooth plot of a bounded region?Smooth ParametricPlot3D with RegionFunction?Smooth border of a region ParametricPlotSmooth region boundarySmooth region plot from list of pointsGet minimum y of a certain x in a region

                                                            Genealogie vun de Merowenger Vum Merowech bis zum Chilperich I. | Navigatiounsmenü