Added uninstall.sh

This commit is contained in:
Peter Green 2023-01-08 20:54:41 +00:00
parent 243187576f
commit c1aed4bcb9
2 changed files with 17 additions and 5 deletions

View File

@ -54,11 +54,12 @@ until [ "$tb" = y ] || [ "$tb" = n ]
done
echo "
####################################################################################
# #
# Would you like to backup your Home directory sans Firefox and Thunderbird? y/n #
# #
####################################################################################"
#################################################
# #
# Would you like to backup your Home directory #
# sans Firefox and Thunderbird? y/n #
# #
#################################################"
read -r home
until [ "$home" = y ] || [ "$home" = n ]

11
uninstall.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
# Uninstall the app...
echo "Removing all files and shortcuts..."
rm -r "$HOME"/bin/backup_home
rm "$HOME"/.local/share/applications
echo "Application now removed!"
echo "Press 'Enter' to close this window..."
read -r