-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdebloat-mint.sh
56 lines (45 loc) · 1.17 KB
/
debloat-mint.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
#!/bin/bash
zenity --question --text="Do you want to debloat your system?" --no-wrap
if [ $? = 0 ]; then
## Remove the bloat
sudo apt purge redshift -y
sudo apt purge libreoffice-core -y
sudo apt purge libreoffice-common -y
sudo apt purge transmission-gtk -y
sudo apt purge hexchat -y
sudo apt purge baobab -y
sudo apt purge seahorse -y
sudo apt purge thunderbird -y
sudo apt purge rhythmbox -y
sudo apt purge pix -y
sudo apt purge simple-scan -y
sudo apt purge drawing -y
sudo apt purge gnote -y
sudo apt purge xreader -y
sudo apt purge onboard -y
sudo apt purge gnome-calendar -y
z sudo apt purge celluloid -y
sudo apt purge gnome-logs -y
sudo apt purge gnome-power-manager -y
sudo apt purge onboard -y
sudo apt purge warpinator -y
sudo apt autoremove -y && sudo apt clean
else
exit
fi
zenity --question --text "Do you want remove flatpak and mark it on hold?" --no-wrap
if [ $? = 0 ]; then
##mark packages on hold
sudo apt purge flatpak
sudo apt-mark hold flatpak
else
exit
fi
zenity --question --text "Would you like to update your system?" --no-wrap
if [ $? = 0 ]; then
#update and upgrade mint
sudo apt update && sudo apt upgrade -y
else
exit
fi
exit