如何通过 gconftool-2 设置列表键的值?

如何通过 gconftool-2 设置列表键的值?

我想通过终端更改 gconf 列表键的值,但我不知道如何做。

gconftool-2 --type list the/key/to/modify但我不知道如何放置这些值,因为它不只是一个。

那么,如何为 gconf 列表键设置不同的值?

答案1

您应该像这样构建您的命令行:

gconftool-2 --type list --list-type string --set /the/key/to/modify '[value1,value2,value3]'

如您所见,您还需要使用 来指定列表元素的类型--list-type

相关内容