我在 16.04 上使用这段代码(shell 脚本)与 Gnome 终端配置文件进行交互,它运行良好
profile=$(gsettings get org.gnome.Terminal.ProfilesList default)
profile=${profile:1:-1} # remove leading and trailing single quotes
org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:${profile}/ \
background-transparency-percent
然后,我现在通过安装 16.04.1 来更新系统,当我通过脚本或命令行运行上述命令时,gsettings
只返回其“使用”消息:
$ gsettings get org.gnome.Terminal.Legacy.Profile:/org/gnome/terminal/legacy/profiles:/:${profile}/
用法:gsettings [--schemadir SCHEMADIR] get SCHEMA[:PATH] KEY ...
我需要做什么才能让这个命令再次工作?
您省略了键名,例如
background-transparency-percent
: