Ubuntu 14.04 中的键盘快捷键下没有导航

Rob*_*ten 5 shortcut-keys workspaces 14.04

在 Gnome 闪回下的 Ubuntu 14.04 中,我在“设置”下的“键盘”下看不到以前的“导航”菜单。我想定义工作区之间的转换(不是 CNTRL+ALT+cursor 而只有 CNTRL+cursor),12 个功能键来打开我的 12 个工作区,并用 CNTRL+ALT+cursor 在工作区之间转换打开的窗口。

我现在怎么办?

小智 4

我喜欢Super + [1-6]。使用一个简单的终端命令一次性设置它:

gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-1 "['<Super>1']"
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-2 "['<Super>2']"
gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-n "['<Super>n']"
Run Code Online (Sandbox Code Playgroud)

或者使用 GUI 应用程序:

安装 dconf 工具

sudo apt-get install dconf-tools
Run Code Online (Sandbox Code Playgroud)

ALT + F2,然后运行:

dconf-editor
Run Code Online (Sandbox Code Playgroud)

导航到“org.gnome.desktop.wm.keybindings”看看那里。

查找属性:switch-to-workspace-[1-12]

像这样设置值:

['<Super>1']
Run Code Online (Sandbox Code Playgroud)