Skip to content

Commit

Permalink
added update module uninstaller script & minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
mintRaven-05 authored Jul 14, 2024
1 parent d17715b commit 167ce64
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ echo ""
echo "Copyright (C) 2024, Debjeet Banerjee"
echo ""

sleep .5

if [ -d "$HOME/.Atlas" ]; then
echo "removing $HOME/.Atlas"
rm -rf $HOME/.Atlas
Expand All @@ -24,6 +26,15 @@ else
echo "could not locate /usr/bin/atlas"
fi

if [ -d "$HOME/.local/atlas" ]; then
echo "removing $HOME/.local/atlas"
rm -rf $HOME/.local/atlas
else
echo "could not locate $HOME/.local/atlas"
fi

sleep 1

echo "Thank you for trying out Atlas."
echo "If you have any suggestions or found out any bugs, you can report it"
echo "over the issues page."
Expand Down

0 comments on commit 167ce64

Please sign in to comment.