14

I am running Ubuntu GNOME 15.10 with GNOME 3.18, and I have set an image as my desktop background, it has a white bit around it, however when I set it to be "Spanned" on my desktop in the GNOME Tweak Tool it is put in the middle with two big black bits next to it:

enter image description here

So how can I make those black bits go white? How can I change the background colour to white (well, the black bits that is, that's what it would have been called on Unity)?

Byte Commander
  • 110,523

1 Answers1

23

Use gsettings to set the color white (#FFFFFF) and a solid fill.

gsettings set org.gnome.desktop.background primary-color "#FFFFFF"
gsettings set org.gnome.desktop.background secondary-color "#FFFFFF"
gsettings set org.gnome.desktop.background color-shading-type "solid"

A.B.
  • 92,275
  • You can check the possible settings for org.gnome.desktop.background in here: https://github.com/GNOME/gsettings-desktop-schemas/blob/master/schemas/org.gnome.desktop.background.gschema.xml.in – Zedzdead Aug 30 '22 at 00:25