如何在 Mate / Macro 中禁用工作区切换键(ctrl-alt-arrow)

Dom*_*ruh 4 linux keyboard-shortcuts mate

在 MATE 中(至少与 Ubuntu 17.04 一起提供),默认情况下,Ctrl-Alt-{Left/Right/Up/Down} 切换工作区。因此,此快捷方式在应用程序中不可用。

在“键盘快捷键”( mate-keybinding-properties) 应用程序中,未列出此快捷键。(可能是因为它是由底层窗口管理器 Marco 处理的。)如何禁用它?

Dom*_*ruh 5

您可以使用: gsettings set org.mate.Marco.global-keybindings switch-to-workspace-left disabled gsettings set org.mate.Marco.global-keybindings switch-to-workspace-right disabled gsettings set org.mate.Marco.global-keybindings switch-to-workspace-up disabled gsettings set org.mate.Marco.global-keybindings switch-to-workspace-down disabled

这些(和许多其他)设置的名称可以在这里找到(以有些难以理解的形式):https : //github.com/mate-desktop/marco/blob/master/src/org.mate.marco.gschema.xml . https://github.com/mate-desktop/marco/blob/master/README中非常简短地描述了更改快捷方式的命令。

  • 至少在我的系统上,这个应用程序列出了很多键绑定,但没有列出“Ctrl-Alt-Left”键绑定。(它有“Ctrl-Alt-Left(键盘)”,但那是另一回事。) (4认同)