请问ubuntu18.04下如何通过xfconf-query设置桌面颜色?

请问ubuntu18.04下如何通过xfconf-query设置桌面颜色?

我的环境是xubuntu 18.04 64位。我用它来设置桌面的颜色:

xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/workspace0/color1 -n -t int -t int -t int -t int -s 19018 -s 37008 -s 55769 -s 65535

然后我看到颜色是黑色的。我哪里错了?

答案1

它可以将 int 类型替换为 uint 类型。

答案2

和 :

xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/workspace0/color1

你得到 :

Value is an array with 4 items:

7936
16128
28416
65535

因此,您必须使用 -a 选项设置一个数组
对于每个项目,您必须首先指定类型,然后指定值。
你可以尝试这样:

xfconf-query -c xfce4-desktop -p /backdrop/screen0/monitor0/workspace0/color1 -a -t int -s 19018 -t int -s 37008 -t int -s 55769 -t int -s 65535

相关内容