設定->表示UIからスティッキーエッジを無効にする方法を知っていますが、コマンドラインまたは設定ファイルからできるようにしたいです。
誰もがコマンドまたは設定ファイルを介して「スティッキーエッジ」を無効にする方法を知っていますか?
Ubuntuはconfigオプションをどこに保存しますか?
次のコマンドは、スティッキーエッジを無効にします。
dconf write /org/compiz/profiles/unity/plugins/unityshell/launcher-capture-mouse false
そして、これはそれらを再び有効にします:
dconf write /org/compiz/profiles/unity/plugins/unityshell/launcher-capture-mouse true
Dconfデータベースの/org/compiz/profiles/Default/plugins/core/active-plugins
キーになります。
開いているターミナルを確認するには、dconf watch /
を実行します
CompizConfig Settings Managerを開き、必要なオプションを有効または無効にします。ターミナルの変更に注意してください。
コマンドdconf write KEY VALUE
を使用して、必要な設定を設定します
dconf read /org/compiz/profiles/Default/plugins/core/active-plugins
dconf write /org/compiz/profiles/Default/plugins/core/active-plugins <value>
gsettings get org.compiz.core:/org/compiz/profiles/Default/plugins/core/ active-plugins
gsettings set org.compiz.core:/org/compiz/profiles/Default/plugins/core/ active-plugins <value>
参照:man dconf
、可能なオプションをすべて表示する場合は、dconf-editor
を試してください