Unity 启动器显示压力

Unity 启动器显示压力

是否可以在 Ubuntu 14.10 上停用 Unity 启动器显示压力。即使我将显示压力设置为 0,它仍然不够灵敏,我必须用鼠标指针尝试几次才能显示。

答案1

尝试将“边缘响应度”设置为最大值,例如从命令行使用

gsettings set org.compiz.unityshell:/org/compiz/profiles/unity/plugins/unityshell/ edge-responsiveness 8.0

取消设置在“启动器”选项卡中。

答案2

我遇到了同样的问题,但在 Ubuntu 16.04 中。最后我在 Compiz 中找到了解决方案。将启动显示压力设置为 1。希望它仍然能帮助到某些人。参见图片:

CCSM 截图

答案3

无需使用鼠标来显示压力,绑定脚本下面的快捷方式。它将允许您随意切换 Unity 启动器

#!/bin/bash
schema="org.compiz.unityshell"
path="/org/compiz/profiles/unity/plugins/unityshell/"
key="launcher-hide-mode"

current_value=$(gsettings get "$schema":"$path" "$key")

if [ $current_value -eq 0 ] ;
then
    gsettings set "$schema":"$path" "$key" 1
else
    gsettings set "$schema":"$path" "$key" 0
fi

相关内容