Answers:
这是我想出的解决方案:
非常快速简便,无需任何安装/扩展:
安装dconf-editor
(已安装在当前的debian / ubuntu发行版中):
sudo apt-get install dconf-editor
打开dconf-editor
(从仪表板或终端)
将“仅当前工作空间”设置为true
..您完成了:)
只是:
gsettings set org.gnome.shell.app-switcher current-workspace-only true
作为安装dconf-editor
和不必费力地使用鼠标的另一种选择,您也可以从终端执行此操作。
要创建current-workspace-only
值:
dconf write /org/gnome/shell/app-switcher/current-workspace-only 'true'
要删除它,请返回默认设置:
dconf reset /org/gnome/shell/app-switcher/current-workspace-only
dconf-editor
如果它可以搜索路径,属性和值,我希望更多。
gsettings
仅仅是一个更高级别的API,它也设置dconf
值(以及很可能是在一般优于直接访问dconf)
似乎与
gsettings set org.gnome.shell.window-switcher current-workspace-only true
gsettings set org.gnome.shell.app-switcher current-workspace-only true
.window-switcher
)
对于那些想要在当前工作区中打开的窗口中切换,但又希望能够在所有工作区中的所有打开的应用中切换的人们,可以通过更改键盘快捷键来实现。
在设置>设备>键盘下(在Ubuntu 17.10上):
org.gnome.shell.app-switcher current-workspace-only false
和org.gnome.shell.window-switcher current-workspace-only true
如果您也想取消分组在切换应用程序,你可以添加官方支持AlternateTab扩展。
此外:
实际上,Ubuntu的是要具有Alternatetab作为默认Alt+ tab在Ubuntu(19.04)即将推出的版本,而当前的默认应用切换器将保持在Super+ tab。
这里的其他解决方案在Ubuntu 18.04.1上对我不起作用,但是Alt Tab Workspace扩展有效。