68

Up until a couple months ago, if I changed my wallpaper/background image, I could choose between tile, zoom, centre, scale, fill or span. These options no longer appear in GUI for changing the background image.
I am using Ubuntu 17.10.

pomsky
  • 68,507
William Wallace
  • 781
  • 1
  • 5
  • 5
  • 1
    I certainly hope ubuntu puts back this ability soon - its still missing on 18.10 – Scott Stensland Oct 31 '18 at 03:48
  • related: for 'center' or 'scaled' settings that leave borders around the image, for choosing the border color: https://askubuntu.com/questions/699131/how-to-change-desktop-background-colour-in-gnome – Florian Castellane Mar 03 '20 at 08:04

4 Answers4

83

These options are removed from the default GUI wallpaper settings (accessible from the Settings application) in the recent versions of GNOME 3 for some reason.

As an alternative, you may use another GUI application called (GNOME) Tweaks to get those extra options. To install it first run

sudo apt install gnome-tweaks

Then launch Tweaks and go to the 'Appearance' section on Ubuntu 18.04 and later (or the 'Desktop' section on Ubuntu 17.10). You'll get options to adjust the background and lock screen images.

enter image description here

pomsky
  • 68,507
21

On Ubuntu 18.04 and later, the settings can be found under Tweak's 'Appearance' tab (instead of 'Desktop').

screenshot

pomsky
  • 68,507
Cranky
  • 454
  • 5
  • 11
14

You can use a terminal tool called gsettings.

  • gsettings list-schemas -- among others you will get,

    org.gnome.desktop.background : Option 1

    org.gnome.desktop.screensaver ( for lockscreen, just in case ) : Option 2

  • gsettings list-recursively org.gnome.desktop.background, must try!

    You will what different options are supported by the schemas with there default values, you'll get something like this,

    org.gnome.desktop.background picture-options 'zoom'
    

    now if you want to know what are the other values supported by the options, other than default, do, for example.,

  • gsettings range org.gnome.desktop.background picture-options

    And voilà:

    • 'none' (blank screen/ color black),
    • 'wallpaper',
    • 'centered',
    • 'scaled',
    • 'stretched',
    • 'zoom',
    • 'spanned'.
pomsky
  • 68,507
  • And how to change to 'centered', for example, using this command line? For future readers it is important – sugab Dec 14 '20 at 05:44
  • 2
    use gsettings set org.gnome.desktop.background picture-options[KEY] 'centered'[VALUE], that single quotes around centered is compulsory not KEY and VALUE and try using man gsettings. – commonSense Dec 15 '20 at 14:09
  • concrete command example

    "gsettings set org.gnome.desktop.background picture-options centered"

    – Frederick G. Sandalo Nov 12 '23 at 22:04
4

The work-around provided by @pomsky no longer works for Ubuntu 22.04. The wallpaper files using the Tweaks application have no effect any more and are overwritten by the default Background settings.

You now have to use a combination of the two. First set the desired background file though the default Background settings. Next open the Tweaks application to set the adjustments like spanned, etc

Forage
  • 1,530