#!/bin/bash

_questionStr="This will reset any customizations to the GNOME application overview\n\
and the favorites in the Ubuntu Dock.\n\n\
This will also reorganize items installed by Edubuntu into application folders.\
\n\nDo you wish to proceed?"

if zenity --question --text="${_questionStr}" --ellipsize; then
   dconf reset -f /org/gnome/desktop/app-folders/
   dconf reset -f /org/gnome/shell/favorite-apps
   zenity --info --text="Application overview and favorites have been reset" --ellipsize
fi
