web-dev-qa-db-ja.com

Alt + Tabは、MATEの16.04の2つの最近のウィンドウ間でのみ切り替わります

16.04でMATEデスクトップ環境を使用しています。の Alt+Tab キーの組み合わせは、同じワークスペースで最近アクセスした2つのウィンドウ間でのみ切り替わります。同じワークスペース内で開いている他のすべてのウィンドウにはまったく切り替わりません。私は押し続けています Alt 押しながら離す Tab 複数回。回避策はありますか?

2
deserthiker

Martin Wimpress ごとのデフォルト関数:

Alt+Tab:CURRENTワークスペースでアプリケーションをサイクルします。
Control+Alt+Tab:すべてのワークスペースでアプリケーションをサイクルします。

それらを確認するには、次を実行します。

gsettings get org.mate.Marco.global-keybindings switch-windows 
gsettings get org.mate.Marco.global-keybindings switch-windows-all 
gsettings get org.mate.Marco.global-keybindings switch-windows-all-backward

それらを変更するには、好みの設定で次のコードのバリエーションを実行します。

gsettings set org.mate.Marco.global-keybindings switch-windows 'disabled'
gsettings set org.mate.Marco.global-keybindings switch-windows-all '<Alt>Tab'
gsettings set org.mate.Marco.global-keybindings switch-windows-all-backward '<Shift><Alt>Tab'
2
J. Starnes