Xubuntu 16.04 freshly installed, i'm building a script to automate a series of system settings without accessing to the GUI $ xfconf-query --channel xfce4-desktop -l -v /backrop/screen0/monitor0/workspace0/color1 <<UNSUPPORTED>> then $ xfconf-query --channel xfce4-desktop -m -v I change the desktop color and i get this warning: (xfconf-query:1831): xfconf-common-WARNING **: Unable to convert GValue to string set: /backdrop/screen0/monitor0/workspace/color1 ((null)) Is there a way to provide a value to set the color1 property? Would be nice to be able to use an rgb/hsv array as in --set 255 255 255 or a string as in --set #FFFFFF thanks
Found a fix, i used this command to set a black background: $ xfconf-query --channel xfce4-desktop --property /backdrop/screen0/monitor0/workspace0/color1 --type uint --type uint --type uint --type uint --set 0 --set 0 --set 0 --set 65535