Colors

請問如何在 ubuntu18.04 中通過 xfconf-query 製作桌面顏色?

  • April 13, 2020

我的環境是 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

然後我看到顏色是黑色的。我哪裡錯了?

它可以將類型 int 替換為 uint。

和 :

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

引用自:https://unix.stackexchange.com/questions/501319