Para obter o comportamento exato na pergunta, siga um destes procedimentos.
Usando um aplicativo GUI
- Instale
dconf-editor
- Abrir
dconf-editor
-
Localizar: org/gnome/desktop/wm/keybindings
- Remove o padrão: Alt + Guia
Localizar: switch-applications
Alteração: Usar valor padrão = false
Alteração: ['<Super>Tab', '<Alt>Tab']
para ['<Super>Tab']
- Remover padrão: Shift + Alt + Guia
Localizar: switch-applications-backward
Alteração: Usar valor padrão = false
Alteração: ['<Shift><Super>Tab', '<Shift><Alt>Tab']
para ['<Shift><Super>Tab']
- Definir novo comportamento: Alt + Guia
Localizar: switch-windows
Usar valor padrão = false
e ''
to ['<Alt>Tab']
- Definir novo comportamento: Shift + Alt + Separador
Localizar: switch-windows-backward
Usar valor padrão = false
e ''
to ['<Shift><Alt>Tab']
-
Se você quiser que switch-windows
trabalhe em workspaces
, não apenas no atual workspace
, também poderá desmarcar org/gnome/shell/window-switcher/current-workspace-only
- Feche o editor do dconf
- Versões mais antigas Gnome: (desnecessário no Ubuntu 18.04) , Você também pode precisar reiniciar o shell do Gnome. Para fazer isso, primeiro salve qualquer trabalho e feche todos os aplicativos. Finalmente, pressione Alt + F2 , então digite r para reiniciar o Gnome.
Usando o shell
Primeiro, liste as configurações existentes , caso você queira reverter. Isso não faz nada além de listar valores.
gsettings get org.gnome.desktop.wm.keybindings switch-applications
gsettings get org.gnome.desktop.wm.keybindings switch-applications-backward
gsettings get org.gnome.desktop.wm.keybindings switch-windows
gsettings get org.gnome.desktop.wm.keybindings switch-windows-backward
Alterar para novo comportamento
gsettings set org.gnome.desktop.wm.keybindings switch-applications "['<Super>Tab']"
gsettings set org.gnome.desktop.wm.keybindings switch-applications-backward "['<Shift><Super>Tab']"
gsettings set org.gnome.desktop.wm.keybindings switch-windows "['<Alt>Tab']"
gsettings set org.gnome.desktop.wm.keybindings switch-windows-backward "['<Shift><Alt>Tab']"