#!/bin/sh
#
# http://www.bionicpc.com.au 
#
# Restore top and bottom panels
#
# Instructions
# Make this file executable and Run it.
#

{
	zenity --question --text="Are you sure you want to restore the default top and bottom panels?"
	gconftool-2 --recursive-unset /apps/panel
	rm -rf ~/.gconf/apps/panel
	pkill gnome-panel
	exit
}

# END OF Script


