LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Hide Gnome Panel (https://www.linuxquestions.org/questions/linux-software-2/hide-gnome-panel-174730/)

Lobais 04-26-2004 11:44 AM

Hide Gnome Panel
 
Hi,
Is it possible to make a command for hiding the gnome panel? I'd like to put it in my wine sh script, so the panel hides and shows automatic when I start and stop wine.

kengo 01-15-2005 04:12 PM

I've been having some similar trouble (trying to play Starcraft is tricky with the panel taking up the bottom of the screen! ;) ). I found that setting the panel to autohide, and setting the hidden height to "0" or "1" works well. I looked around and I think that "gconftool-2" is what we're looking for. The keys to change are:

/apps/panel/profiles/default/toplevels/bottom_panel/auto_hide
/apps/panel/profiles/default/toplevels/bottom_panel/auto_hide_size

So, your script might look like this:

Code:

gconftool-2 --type bool --set /apps/panel/profiles/default/toplevels/bottom_panel/auto_hide "True"
gconftool-2 --type int --set /apps/panel/profiles/default/toplevels/bottom_panel/auto_hide_size "0"

Let me know if that helps!


All times are GMT -5. The time now is 10:20 PM.