是否可以在 Ubuntu 14.10 上停用 Unity 启动器显示压力。即使我将显示压力设置为 0,它仍然不够灵敏,我必须用鼠标指针尝试几次才能显示。
答案1
尝试将“边缘响应度”设置为最大值,例如从命令行使用
gsettings set org.compiz.unityshell:/org/compiz/profiles/unity/plugins/unityshell/ edge-responsiveness 8.0
或取消设置在“启动器”选项卡中。
答案2
答案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