不使用 CCSM 配置 Compiz

不使用 CCSM 配置 Compiz

有没有办法在配置文件或gconf/中编辑 Compiz 设置dconf

请提供在 CCSM 中完成的示例配置和替代方法。

答案1

嗯,有标准工具:

  • gconf-editor(图形用户界面)
  • gconftool/ gconftool-2(命令行)
  • dconf-editor(图形用户界面)

我的所有 compiz 设置都在 gconf 中/apps/compiz-1

举个确切的例子:

gconftool-2 -s -t string '/apps/compiz-1/plugins/decor/screen0/options/decoration_match' '!state=maxvert'

答案2

dbus

例子:

设置为单显示器:

dbus-send --type=method_call --dest=org.freedesktop.compiz /org/freedesktop/compiz/core/screen0/hsize org.freedesktop.compiz.set int32:8 xrandr -s 1

设置为双显示器:

dbus-send --type=method_call --dest=org.freedesktop.compiz /org/freedesktop/compiz/core/screen0/hsize org.freedesktop.compiz.set int32:4 xrandr -s 0

您可以在compiz dbus 维基页面

手动的

看:

~/.gconf/apps/compiz-1/
/.gconf/apps/compizconfig-1/

这些目录中有%gconf.xml所有设置所对应的文件。

相关内容