如何通过命令行禁用粘性边缘?

如何通过命令行禁用粘性边缘?

我知道如何通过“设置”->“显示 UI”禁用“粘性边缘”,但是,我希望能够通过命令行或配置文件来执行此操作。

有人知道如何通过命令或配置文件禁用“粘性边缘”吗?

Ubuntu 将配置选项存储在哪里?

答案1

以下命令禁用粘性边缘:

dconf write /org/compiz/profiles/unity/plugins/unityshell/launcher-capture-mouse false

下面这个命令重新启用了它们:

dconf write /org/compiz/profiles/unity/plugins/unityshell/launcher-capture-mouse true

答案2

它可能是/org/compiz/profiles/Default/plugins/core/active-pluginsdconf 数据库中的关键:

  1. 要检查打开的终端,请运行dconf watch /

  2. 打开 CompizConfig 设置管理器,尝试启用和禁用所需选项。观察终端中的变化。

  3. 使用命令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

相关内容