forked from Elsie19/pacstall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uninstall.sh
executable file
·141 lines (119 loc) · 4.11 KB
/
uninstall.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/bin/bash
# ____ __ ____
# / __ \____ ___________/ /_____ _/ / /
# / /_/ / __ `/ ___/ ___/ __/ __ `/ / /
# / ____/ /_/ / /__(__ ) /_/ /_/ / / /
# /_/ \__,_/\___/____/\__/\__,_/_/_/
#
# Copyright (C) 2020-present
#
# This file is part of Pacstall
#
# Pacstall is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License
#
# Pacstall is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Pacstall. If not, see <https://www.gnu.org/licenses/>.
# Colors
BOLD='\033[1m'
NC="\033[0m"
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BRed='\033[1;31m'
BGreen='\033[1;32m'
BYellow='\033[1;33m'
BIGreen='\033[1;92m'
BIRed='\033[1;91m'
function fancy_message() {
# $1 = type , $2 = message
# Message types
# 0 - info
# 1 - warning
# 2 - error
if [[ -z ${1} || -z ${2} ]]; then
return
fi
local MESSAGE_TYPE="${1}"
local MESSAGE="${2}"
case ${MESSAGE_TYPE} in
info) echo -e "[${BGreen}+${NC}] INFO: ${MESSAGE}" ;;
warn) echo >&2 -e "[${BYellow}*${NC}] WARNING: ${MESSAGE}" ;;
error) echo >&2 -e "[${BRed}!${NC}] ERROR: ${MESSAGE}" ;;
*) echo >&2 -e "[${BOLD}?${NC}] UNKNOWN: ${MESSAGE}" ;;
esac
}
if [[ ! -t 0 ]]; then
NON_INTERACTIVE=true
fancy_message warn "Reading input from pipe"
fi
# Check if pacstall is installed
if ! command -v pacstall &> /dev/null; then
fancy_message error "Pacstall is not installed!"
exit 1
fi
fancy_message info "You can keep the installed packages even after uninstalling Pacstall"
fancy_message info "Choose between the options:"
echo " 1. Remove Pacstall and installed packages."
echo " 2. Remove Pacstall only (Keep installed packages)."
while true; do
echo -ne "Type selection number [${BIRed}1${NC}/${BIGreen}2${NC}] "
read -r reply <&0
if ((reply == 1)); then
fancy_message info "Removing Pacstall and installed packages..."
# Remove packages
if [[ -z $(pacstall -L) ]]; then
fancy_message warn "Nothing is installed using Pacstall yet"
fancy_message warn "Skipping package uninstallation"
else
for i in $(pacstall -L); do
pacstall -PR "$i"
done
fi
fancy_message info "Removing Pacstall"
sudo rm "$(command -v pacstall)"
# Remove scripts and repos
fancy_message info "Removing scripts and repositories"
sudo rm -rf /usr/share/pacstall/
# Remove man page
fancy_message info "Removing man page"
sudo rm /usr/share/man/man8/pacstall.8.gz
# Remove logs
fancy_message info "Removing log files"
sudo rm -rf /var/log/pacstall/
# Remove cache
fancy_message info "Removing cache"type selection number:
sudo rm -rf /var/cache/pacstall/
# Remove tmp files
fancy_message info "Removing temporary files"
sudo rm -rf /tmp/pacstall/
break
elif ((reply == 2)); then
fancy_message info "Only uninstalling Pacstall..."
sudo rm "$(command -v pacstall)"
# Remove scripts and repos
fancy_message info "Removing scripts and repositories"
sudo rm -rf /usr/share/pacstall/
# Remove man page
fancy_message info "Removing man page"
sudo rm /usr/share/man/man8/pacstall.8.gz
# Remove logs
fancy_message info "Removing log files"
sudo rm -rf /var/log/pacstall/
# Remove cache
fancy_message info "Removing cache"
sudo rm -rf /var/cache/pacstall/
# Remove tmp files
fancy_message info "Removing temporary files"
sudo rm -rf /tmp/pacstall/
break
fi
done
fancy_message info "Uninstallation complete. Thanks for using Pacstall!"
# vim:set ft=sh ts=4 sw=4 noet: