web-dev-qa-db-ja.com

MATE 1.6のワークスペースのショートカットを構成する方法

スイッチャーアプレットを使用して4つのワークスペースを正常に構成しましたが、ショートカットを構成する場所が見つかりません( ctrl+alt+left 左側に移動します)。

一部のリソースでは、[設定]> [キーボードショートカット]にあるはずですが、SoundDesktop(ロック画面、ホームフォルダー、検索、計算およびその他のアプリを含む)およびCustomのエントリのみを見つけることができます。

インストール中に何か不足していますか?これらのショートカットを手動で含めることは可能ですか? MATEワークスペースを捨てて、Compizワークスペース(Windowsアプレットと統合されていないワークスペース)を使用する必要がありますか?

6
igorsantos07

これらの設定は通常、キーボードショートカットにあります。

システム>設定>ハードウェア>キーボードショートカット

https://roseannastar.files.wordpress.com/2016/08/keyboardshortcuts.png

キーのコンボが表示されている場所または「無効」と表示されている場所をクリックし、目的のキーの組み合わせを押します。

何らかの理由でこの機能を使用できない場合、またはCLI方式を好む場合は、Gsettingsを使用してください。

以下に、ワークスペース操作で使用可能なすべてのキーバインドとそのデフォルト値を示します。

org.mate.Marco.global-keybindings switch-to-workspace-left '<Control><Alt>Left'
org.mate.Marco.global-keybindings switch-to-workspace-11 'disabled'
org.mate.Marco.global-keybindings switch-to-workspace-10 'disabled'
org.mate.Marco.global-keybindings switch-to-workspace-1 'disabled'
org.mate.Marco.global-keybindings switch-to-workspace-12 'disabled'
org.mate.Marco.global-keybindings switch-to-workspace-4 'disabled'
org.mate.Marco.global-keybindings switch-to-workspace-2 'disabled'
org.mate.Marco.global-keybindings switch-to-workspace-3 'disabled'
org.mate.Marco.global-keybindings switch-to-workspace-7 'disabled'
org.mate.Marco.global-keybindings switch-to-workspace-5 'disabled'
org.mate.Marco.global-keybindings switch-to-workspace-6 'disabled'
org.mate.Marco.global-keybindings switch-to-workspace-8 'disabled'
org.mate.Marco.global-keybindings switch-to-workspace-prev 'disabled'
org.mate.Marco.global-keybindings switch-to-workspace-right '<Control><Alt>Right'
org.mate.Marco.global-keybindings switch-to-workspace-9 'disabled'
org.mate.Marco.global-keybindings switch-to-workspace-down '<Control><Alt>Down'
org.mate.Marco.global-keybindings switch-to-workspace-up '<Control><Alt>Up'
org.mate.Marco.window-keybindings move-to-workspace-8 'disabled'
org.mate.Marco.window-keybindings move-to-workspace-10 'disabled'
org.mate.Marco.window-keybindings move-to-workspace-12 'disabled'
org.mate.Marco.window-keybindings move-to-workspace-11 'disabled'
org.mate.Marco.window-keybindings move-to-workspace-left '<Control><Shift><Alt>Left'
org.mate.Marco.window-keybindings move-to-workspace-down '<Control><Shift><Alt>Down'
org.mate.Marco.window-keybindings move-to-workspace-1 'disabled'
org.mate.Marco.window-keybindings move-to-workspace-2 'disabled'
org.mate.Marco.window-keybindings move-to-workspace-3 'disabled'
org.mate.Marco.window-keybindings move-to-workspace-4 'disabled'
org.mate.Marco.window-keybindings move-to-workspace-5 'disabled'
org.mate.Marco.window-keybindings move-to-workspace-6 'disabled'
org.mate.Marco.window-keybindings move-to-workspace-7 'disabled'
org.mate.Marco.window-keybindings move-to-workspace-9 'disabled'
org.mate.Marco.window-keybindings move-to-workspace-up '<Control><Shift><Alt>Up'
org.mate.Marco.window-keybindings move-to-workspace-right '<Control><Shift><Alt>Right'
org.mate.Marco.window-keybindings toggle-on-all-workspaces 'disabled'

変更するには、たとえばgsettings setコマンドを使用します

gsettings set org.mate.Marco.window-keybindings move-to-workspace-3 '<Mod4>3'

このコマンドは設定します super+3 現在のウィンドウをワークスペース3に移動するショートカットとして。

キーバインドを削除するには、setを「無効」にします。詳細については、man gsettingsを参照してください。あなたが望むものを正確に達成するために実験する必要があるかもしれません。

5
Zanna