3

is it possible to desactivate Unity launcher reveal pressure on Ubuntu 14.10. Even if I set up the reveal pressure at 0, it is still not sensitive enough and I must try several time with the mouse pointer before it appears.

dupont
  • 2,047

3 Answers3

0

Try settings the "edge responsiveness" to maximum, for example from the command line using

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

or with Unsettings in the "Launcher" tab.

0

I run into the same problem, but in Ubuntu 16.04. Finally I found solution in Compiz. Set launch reveal pressure to 1. Hope it will help to somebody still. See the image:

CCSM screenshot

David Foerster
  • 36,890
  • 56
  • 97
  • 151
0

Instead of using mouse for reveal pressure, bind the script below to a shortcut. It will allow you toggling unity launcher at will

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