Answers:
Settngs Manager的“设置编辑器”中有更多可用的功能,可以使用以下命令从命令行启动:
xfce4-settings-editor
这将显示:
xfconf-query -v -l -c xfce4-keyboard-shortcuts
xfconf-query
如果多台计算机需要配置键盘快捷键,则无需重复打开窗口即可完成此操作。相反,使用非常方便的xfconf-query
在命令bash
脚本--set
一--property
中xfce4-keyboard-shortcuts.xml
。
这是一个例子:
$ xfconf-query --create --channel xfce4-keyboard-shortcuts --property /commands/custom/XF86AudioMute --type string --set 'amixer -D pulse set Master 1+ toggle'
事实上,这是我恢复 Xubuntu 12.04 中的静音按钮功能的解决方案的一部分。
--reset
选项将其删除,然后重新创建。否则,正在运行的XFCE会话将不会接听它。
/commands/custom/XF86AudioMute
?
这是一个脚本,可在Xubuntu中清晰地处理将命令绑定到键的操作。下载keybind.c,进行编译(示例在链接的自述文件中提供)并简单运行./keybind "<keys to bind to>" "<command>"
例如我使用的一些继承人:
./keybind "<Control><Alt>Delete" "gnome-system-monitor"
./keybind "<Control><Alt>Up" "xrandr -o inverted"
./keybind "<Control><Alt>Down" "xrandr -o normal"
./keybind "<Control><Alt>Right" "xrandr -o left"
./keybind "<Control><Alt>Left" "xrandr -o right"
披露:我创建了脚本。
如果您正在运行Xubuntu系统,并且想从终端上进行操作,这也是一个简单的过程。
为了进行调试,以下是XFCE4中存储的快捷键绑定快捷方式的位置: $ gedit ~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml
基础架构:
1)删除绑定到绑定键的现有命令
2)将新命令设置为键
1a)
`xfconf-query --reset --channel xfce4-keyboard-shortcuts --property "/commands/custom/<Control><Alt>Down"`<br />
`xfconf-query --reset --channel xfce4-keyboard-shortcuts --property "/xfwm4/custom/<Control><Alt>Down"`<br />
2)
`xfconf-query --create --channel xfce4-keyboard-shortcuts --property "/commands/custom/<Control><Alt>Down" --type string --set 'gedit'`
请注意,如果您要绑定密钥,ubuntu系统会平等对待,并且在上述示例中您将需要取消绑定任何密钥<Primary><Alt>Down
left_workspace_key
为<Super>Left
将编辑器与sudo 一起使用。重新启动,快捷键仍然对您<Control><Alt>Left
有帮助吗?en.zimagez.com/zimage/screenshot-10252014-012914pm.php