如何在 Gnome 40 中将热键分配给 4 个以上的工作空间?

如何在 Gnome 40 中将热键分配给 4 个以上的工作空间?

我在 Arch 上使用 Gnome 40,并且为 4 个工作区中的每一个分配了热键。但我想也为第五和第六个工作区设置热键(例如 super+5、super+6)。我怎样才能在 GNOME 40 中做到这一点?

键盘设置中有一个很好的自定义快捷键部分,但我不知道我必须在其中输入的实际命令。我想这是帮助我在其他 4 个工作区之间切换的相同命令。在此输入图像描述

答案1

您可以使用高级模式感知gsettings工具:

$ gsettings list-recursively org.gnome.desktop.wm.keybindings | grep to-workspace 
org.gnome.desktop.wm.keybindings move-to-workspace-5 @as []
org.gnome.desktop.wm.keybindings switch-to-workspace-5 @as []

$ for i in $(seq 9); do
      gsettings set org.gnome.desktop.wm.keybindings move-to-workspace-$i "['<Shift><Super>$i']";
      gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-$i "['<Super>$i']";
  done

取消分配其他操作的快捷方式(如果有);例如:

$ gsettings list-recursively | grep Super | grep 3
org.gnome.shell.keybindings switch-to-application-3 ['<Super>3']

$ for i in $(seq 5); do gsettings set org.gnome.shell.keybindings switch-to-application-$i "[]"; done

或者您可以使用低级dconf工具,例如:

dconf write /org/gnome/desktop/wm/keybindings/switch-to-workspace-5 "['<Super>5']"
dconf write /org/gnome/desktop/wm/keybindings/move-to-workspace-5 "['<Super><Shift>5']"

相关内容