How to change Ubuntu Budgie login screen background?How do I change the wallpaper of the login...

Pendulum Rotation

Knowing when to use pictures over words

What is the best way to simulate grief?

Eww, those bytes are gross

Number of FLOP (Floating Point Operations) for exponentiation

How can I deal with a significant flaw I found in my previous supervisor’s paper?

Issues with new Macs: Hardware makes them difficult for me to use. What options might be available in the future?

Compound Interest... with Wizard Money

What formula could mimic the following curve?

How can animals be objects of ethics without being subjects as well?

Are there any monsters that consume a player character?

Why do members of Congress in committee hearings ask witnesses the same question multiple times?

Strange Sign on Lab Door

Slow moving projectiles from a hand-held weapon - how do they reach the target?

What to do if authors don't respond to my serious concerns about their paper?

A flower in a hexagon

Getting a UK passport renewed when you have dual nationality and a different name in your second country?

Is it a fallacy if someone claims they need an explanation for every word of your argument to the point where they don't understand common terms?

Why are the books in the Game of Thrones citadel library shelved spine inwards?

Does the "particle exchange" operator have any validity?

Longest Jewish year

Rear brake cable temporary fix possible?

What is the etymology of the kanji 食?

Could flying insects re-enter the Earth's atmosphere from space without burning up?



How to change Ubuntu Budgie login screen background?


How do I change the wallpaper of the login screen?Settings schema 'x.dm.slick-greeter' is not installedLogin screen image not showing on Ubuntu 18.04Cant change login screen background after uninstalling xfce4Login screen wallpaper is not working in ubuntuChange color of background on login screenunity-greeter login background won't change according to the user that is highlightedubuntu will not let me set login page backgroundHow do I change the login screen in Ubuntu 16.04+?Login background changed, but lock screen persistsHow do I switch between Unity and Budgie desktop environments in Ubuntu 16.04?Ubuntu Budgie: Black login-screenLogin Screen background changes itself before login in (ubuntu 16.04)Cant change login screen background after uninstalling xfce4













6















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



























    6















    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

























      6












      6








      6


      6






      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

      43117




      43117






















          7 Answers
          7






          active

          oldest

          votes


















          6














          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





















          • 1





            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






          • 1





            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



















          10














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


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

































            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































                0















                • 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































                  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








                  New contributor




                  Emil Petrov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.




























                    -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/3.0/"u003ecc by-sa 3.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

























                    7 Answers
                    7






                    active

                    oldest

                    votes








                    7 Answers
                    7






                    active

                    oldest

                    votes









                    active

                    oldest

                    votes






                    active

                    oldest

                    votes









                    6














                    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





















                    • 1





                      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






                    • 1





                      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
















                    6














                    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





















                    • 1





                      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






                    • 1





                      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














                    6












                    6








                    6







                    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

                    149k37328373




                    149k37328373










                    answered Jun 2 '18 at 20:40









                    David AlvaradoDavid Alvarado

                    1013




                    1013








                    • 1





                      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






                    • 1





                      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














                    • 1





                      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






                    • 1





                      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








                    1




                    1





                    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




                    1




                    1





                    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













                    10














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


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






























                      10














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


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




























                        10












                        10








                        10







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


                        calrification: 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;
                        }


                        calrification: 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 Nov 4 '18 at 21:07

























                        answered Sep 3 '18 at 19:11









                        fuserfuser

                        3471612




                        3471612























                            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

                                3,45081227




                                3,45081227










                                answered Oct 27 '18 at 23:24









                                Bud HovellBud Hovell

                                211




                                211























                                    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






























                                            0















                                            • 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




























                                              0















                                              • 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


























                                                0












                                                0








                                                0








                                                • 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

                                                1183




                                                1183























                                                    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








                                                    New contributor




                                                    Emil Petrov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                    Check out our Code of Conduct.

























                                                      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








                                                      New contributor




                                                      Emil Petrov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                      Check out our Code of Conduct.























                                                        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








                                                        New contributor




                                                        Emil Petrov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                        Check out our Code of Conduct.










                                                        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








                                                        New contributor




                                                        Emil Petrov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                        Check out our Code of Conduct.








                                                        share


                                                        share






                                                        New contributor




                                                        Emil Petrov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                        Check out our Code of Conduct.









                                                        answered 8 mins ago









                                                        Emil PetrovEmil Petrov

                                                        1




                                                        1




                                                        New contributor




                                                        Emil Petrov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                        Check out our Code of Conduct.





                                                        New contributor





                                                        Emil Petrov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                        Check out our Code of Conduct.






                                                        Emil Petrov is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                        Check out our Code of Conduct.























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

                                                            26917




                                                            26917










                                                            answered Jul 4 '18 at 15:01









                                                            Old Jimma from the Old CountryOld Jimma from the Old Country

                                                            51




                                                            51








                                                            • 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

                                                            Why do type traits not work with types in namespace scope?What are POD types in C++?Why can templates only be...

                                                            Will tsunami waves travel forever if there was no land?Why do tsunami waves begin with the water flowing away...

                                                            Should I use Docker or LXD?How to cache (more) data on SSD/RAM to avoid spin up?Unable to get Windows File...