スイッチャー アプレットを使用して 4 つのワークスペースを正常に構成しましたが、ショートカットを構成する場所が見つかりません (左側のワークスペースに移動するにはctrl+ alt+など)。left
一部のリソースでは、環境設定 > キーボード ショートカットの下にあるはずだと書かれていますがSound
、 、Desktop
(ロック画面、ホーム フォルダー、検索、計算、その他のアプリを含む) と のエントリしか見つかりませCustom
ん。
インストールに何かが欠けているのでしょうか? それらのショートカットを手動で含めることは可能ですか? MATE ワークスペースを捨てて、Compiz ワークスペース (Windows アプレットと統合されていない) を使用するだけでよいのでしょうか?
答え1
これらの設定は通常、キーボード ショートカットにあります。
システム > 設定 > ハードウェア > キーボードショートカット
キーの組み合わせが表示されている場所、または「無効」と表示されている場所をクリックし、必要なキーの組み合わせを押します。
何らかの理由でこの機能を使用できない場合、または 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'
このコマンドは、現在のウィンドウをワークスペース 3 に移動するためのショートカットとしてsuper+ を設定します。3
キーバインドを削除するには、set
「無効」にします。man gsettings
詳細については、を参照してください。希望どおりの結果を得るには、実験が必要になる場合があります。