Unity发射器揭示了压力

是否有可能取消激活Unity启动器显示Ubuntu 14.10的压力。 即使我将显示压力设置为0,它仍然不够灵敏,我必须在鼠标指针出现之前尝试几次。

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

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

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

我遇到了同样的问题,但是在Ubuntu 16.04中。 最后我在Compiz中找到了解决方案。 设置启动显示压力为1.希望它仍然对某人有帮助。 看图像:

CCSM截图

而不是使用鼠标显示压力, 将下面的脚本绑定到快捷方式。 它可以让你随意切换统一发射器

 #!/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