xunitc Asked: 2019-02-19 02:11:27 +0800 CST2019-02-19 02:11:27 +0800 CST 2019-02-19 02:11:27 +0800 CST 请问如何在 ubuntu18.04 中通过 xfconf-query 制作桌面颜色? 772 我的环境是 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 然后我看到颜色是黑色的。我哪里错了? colors desktop 2 个回答 Voted ctac_ 2019-02-19T08:18:46+08:002019-02-19T08:18:46+08:00 和 : 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 Best Answer Javier 2020-04-13T06:13:29+08:002020-04-13T06:13:29+08:00 它可以将类型 int 替换为 uint。
和 :
你得到 :
因此,您必须使用 -a 选项设置一个数组。
对于每个项目,您必须先指定类型,然后指定值。
您可以尝试这种方式:
它可以将类型 int 替换为 uint。