我想xfce4-power-manager
通过终端更改设置(当笔记本电脑盖在空调上关闭时该怎么办),以便我可以分配键盘快捷键来执行此操作。
有办法吗?与dconf-editor set
gnome 类似。
编辑
好的,我在 找到了文件~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml
。但更改它没有任何作用。我该如何重新加载xfce4-power-manager
?我试过了xfce4-power-manager --restart
,但没有用。
答案1
找到了,必须用它xfconf-query
来获取/设置值。
获取值:
xfconf-query -c xfce4-power-manager -p /xfce4-power-manager/lid-action-on-ac
要设置值:
xfconf-query -c xfce4-power-manager -p /xfce4-power-manager/lid-action-on-ac -s 1
-c
指定通道,-p
用于该通道内的属性,-s
用于设置值,1
用于暂停,0
用于不执行任何操作。