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

関連情報