27

How does one reset the gnome panel to the initial state?

During use, gnome panel applets move and get replaced with the ones users like. After some time the panel becomes so cluttered that it requires a cleanup. The easiest way would be to reset the panel to the original state that it was in after install. Is there an easy way of doing that?

fossfreedom
  • 172,746
Ressu
  • 13,546
  • You might find this helpful for gnome3:

    http://askubuntu.com/questions/133647/gnome-panel-has-multiple-rows-how-to-undo-that/134058#134058

    – zechariah May 08 '12 at 20:38
  • Maybe there is a misunderstanding about which panel you're referring to. "Gnome panel" is what was used in Gnome 2, whereas 12.04 doesn't include it (at least by default). A screenshot might help? – thomasrutter Jun 12 '12 at 23:18

4 Answers4

27

Move the old configuration directory out of the way, and it'll get reset. Of course, to take effect, you'll have to restart the panel.

mv ~/.gconf/apps/panel ~/gnome-panel-backup
gnome-panel --replace &
lfaraone
  • 4,697
14

You can reset the panel by running

gconftool-2 --recursive-unset /apps/panel

in a Terminal or by hitting Alt+F2 and pasting this command in the textfield and then hit run. After that gnome-panel needs a restart and therefore it has to be killed with the command

pkill gnome-panel

the same way as the command before. The reset gnome-panel will start again automatically.

kone4040
  • 1,917
4

Run rm -r ~/.gconf/apps/panel in a terminal, then log out of Gnome and log back in.

Alex Grin
  • 309
1
gconftool-2 --recursive-unset /apps/panel
pkill gnome-panel
nohup gnome-panel --replace </dev/null &>/dev/null &

This formula is based on the above answers. This works slightly better.

CodeMedic
  • 130