I'm using xmonad with xmobar, but I still use Gnome for some system services. I would like to remove all of the Gnome panels since I don't use them. I can remove all but the last panel. The "Delete This Panel" is gray out on the last one.

I've tried "killall gnome-panel" but it just pops back up. I've also tried auto-hiding and setting it to transparent. That's pretty close but still a little annoying to have something there which sometimes blocks clicks for the bottom part of the screen.

Is there any way to kill gnome-panel or remove the panels?

link|improve this question

64% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You can use the following:

sudo mv /usr/bin/gnome-panel ~/.panel_backup
link|improve this answer
The first suggestion worked, but the second did not. I removed the panel key but it still comes up. Can you update or remove that part of the answer? – oneself May 6 '11 at 14:49
Hmm, not certain why the second didn't work. – Blomkvist May 6 '11 at 14:57
feedback

The "cleanest" way i found to do this is to use the gconf configuration tool. Run gconf-editor, navigate to /desktop/gnome/session, and remove panel from the required_components_list key, so it just contains windowmanager,filemanager.

You can also leave the panel in this key, and change the panel key value in /desktop/gnome/session/required_components to xmobar, so gnome-session will automatically start xmobar at session opening.

If you don't have gconf-editor installed, you can also set the key by running gconftool-2 --set desktop/gnome/session/required_components_list --type string "windowmanager,filemanager" or such, see man gconftool-2

link|improve this answer
I think that would be --type string, not --type bool, right? – mattalexx Aug 4 '11 at 20:54
you're right, edited. Thanks – nodiscc Sep 2 '11 at 7:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.