#!/bin/bash set -e TEXTDOMAIN="zero-center-basic" export TEXTDOMAIN # VALUES FILESTOSAVE=".bashrc" FILESDMRC="/etc/skel/.dmrc" MSGALERT="$(gettext "ALERT! This action cleans ALL configurations and data stored in hidden directories (Thunderbird data, mails, firefox bookmarks, ...) please use this program only as LAST OPTION , Close the Session after execution of this tool")" MSGACCEPT="$(gettext "Yes, I know the consecuences")" MSGCANCEL="$(gettext "No, I am not so desperate still")" MSGOK="$(gettext "All ok, please close this session and restart GDM")" MSGALERT2="$(gettext "Are you sure you want to continue?")" if $(zenity --question --text="$MSGALERT" --ok-label="$MSGACCEPT" --cancel-label="$MSGCANCEL") ; then cd $HOME cp "$FILESTOSAVE" bashrc.bak rm -rf .* || true mv bashrc.bak "$FILESTOSAVE" if [ -f "$FILESDMRC" ]; then cp "$FILESDMRC" .dmrc fi zenity --info --text="$MSGOK" fi exit 0