aboutsummaryrefslogtreecommitdiff
path: root/uninstall
blob: 16b93dbc674e974bbbad04a1a8bc25b2491c4900 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
sudo rm -rf /usr/share/Watcher/
sudo rm -rf /usr/local/bin/watcher

echo "Do you want to delete your raw_data files?? y or n (default: n)"
read yes_or_no

if [[ $yes_or_no = y ]]; then
    rm -rf ~/.cache/Watcher/
else
    echo "Nice Decision either way you might use this app in future"
fi