web-dev-qa-db-ja.com

シェルスクリプトまたはubuntu 16.04のpython

特定のプログラムが開いているときにCinnamonでAlt-Tabアプリケーションの切り替えを無効にするにはどうすればよいですか?System Settings> Keyboard> Shortcuts無効にしようとしました。クリックして新しいショートカットを設定し、Backspaceを押してそのショートカットを無効に設定しました。

gsettingsコマンドの使用別のワークスペースに切り替えるキーバインドは、次の場所で設定されます。

org.gnome.desktop.wm.keybindings

gsettings set org.gnome.desktop.wm.keybindings switch-applications []
gsettings set org.gnome.desktop.wm.keybindings switch-applications-background []

Alt + tabキーを無効にするためにこれらの多くの方法を試しましたが、それでも無効にはなりません。グローバルに設定する必要があるかもしれませんが、alt + tabキーの値が保存されているUbuntuでは、わかりません。これで私を助けてください。

1
Dinesh

dconfdconf-cliパッケージから)で変更してみてください:

dconf load / << EOF 
[org/compiz]
current-profile='unity'

[org/compiz/profiles/unity/plugins/unityshell]
alt-tab-prev='Disabled'
launcher-switcher-prev='Disabled'
alt-tab-forward='Disabled'
launcher-switcher-forward='Disabled'
alt-tab-forward-all='Disabled'
alt-tab-prev-all='Disabled'

[org/compiz/profiles/unity/plugins/switcher]
prev-all-key='Disabled'
prev-key='Disabled'
next-all-key='Disabled'
next-key='Disabled'

[org/compiz/profiles/unity/plugins/staticswitcher]
prev-all-key='Disabled'
next-all-key='Disabled'

[org/compiz/profiles/unity-lowgfx/plugins/unityshell]
alt-tab-prev='Disabled'
launcher-switcher-prev='Disabled'
alt-tab-forward='Disabled'
launcher-switcher-forward='Disabled'
alt-tab-forward-all='Disabled'
alt-tab-prev-all='Disabled'

[org/compiz/profiles/unity-lowgfx/plugins/switcher]
prev-all-key='Disabled'
prev-key='Disabled'
next-all-key='Disabled'
next-key='Disabled'

[org/compiz/profiles/unity-lowgfx/plugins/staticswitcher]
prev-all-key='Disabled'
next-all-key='Disabled'
EOF

注:

  1. これにより、すべての出現が無効になります Tab キー。
  2. virtualBox 16.04 LTSには、2つのCompizプロファイルがあります-unityおよびunity-lowgfxunityのみがあることが確実な場合は、unity-lowgfxをスキップできます。

でデフォルト設定に戻すことができます

dconf reset /org/compiz/profiles/unity-lowgfx -f
dconf reset /org/compiz/profiles/unity -f

その後、ログアウトして再度ログインします。

2
N0rbert