3

I would like to manually control when the launcher is shown or hidden. Is it possible? There is no option to "never show launcher", nor have I found a way to force the launcher to hide.

sup
  • 4,964

4 Answers4

2

I use unity2d and i made this script to toogle the launcher :

#!/bin/sh
var=$(gsettings get com.canonical.Unity2d.Launcher hide-mode)
if [ "$var" = 0 ]
then
    exec gsettings set com.canonical.Unity2d.Launcher hide-mode 2
else
    exec gsettings set com.canonical.Unity2d.Launcher hide-mode 0
fi

after you can set a shortcut who launch this script

A.B.
  • 92,125
nobo
  • 21
2

If the launcher is set to auto-hide, with Super + e (mostly Windows + e) you can make the launcher show again. Havent found a way to hide the launcher through a shortcut though.

Kris Harper
  • 13,705
0

You can configure it to hide automatically when not used. Launch the CompizConfig Settings Manager (package compizconfig-settings-manager), find the Ubuntu Unity Plugin there, and change the Hide Launcher setting to "Autohide".

Adam Byrtek
  • 9,861
-1

I use Cairo-Dock (not without its own set of problems) as it is far superior to the Unity launcher. What I have done for the moment is use compizconfig settings manager to enable auto-hide, in combination with the reveal mode set to 'None'. Now instead of popping up when I navigate to the edge of the screen it only pops up (annoyingly) when using 'find'.

Of course, I really would really rather just disable the launcher altogether. And compiz too, but gnome unfortunately does not support transparencies without compiz. And Unity apparently just doesn't work without the horrible launcher.

Ryan
  • 1