Você pode executar
gconftool-2 --type int --set "/apps/compiz-1/plugins/unityshell/screen0/options/launcher_hide_mode" 2
para definir o modo de ocultação do ativador como "Dodge Windows" e
gconftool-2 --type int --set "/apps/compiz-1/plugins/unityshell/screen0/options/launcher_hide_mode" 0
para configurá-lo para nunca esconder.
Os números do modo são:
- 0 - nunca
- 1 - Ocultar automaticamente
- 2 - Esquivar o Windows
- 3 - Esquivar a janela ativa
Você pode fazer isso com um switch apenas ligando (o valor deve ser 2 ou 0 antes):
gconftool-2 --type int --set "/apps/compiz-1/plugins/unityshell/screen0/options/launcher_hide_mode" $((2 - $(gconftool-2 --get "/apps/compiz-1/plugins/unityshell/screen0/options/launcher_hide_mode")))
Você então criaria uma nova tecla de atalho ( Alt + F2 → gnome-keybinding-properties
) com o comando sendo:
/bin/bash -c "gconftool-2 --type int --set "/apps/compiz-1/plugins/unityshell/screen0/options/launcher_hide_mode" $((2 - $(gconftool-2 --get "/apps/compiz-1/plugins/unityshell/screen0/options/launcher_hide_mode")))"