-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsinstall.sh
executable file
·171 lines (134 loc) · 3.73 KB
/
appsinstall.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
func_install() {
if pacman -Qi $1 &> /dev/null; then
tput setaf 2
echo "###############################################################################"
echo "################## The package "$1" is already installed"
echo "###############################################################################"
echo
tput sgr0
else
tput setaf 3
echo "###############################################################################"
echo "################## Installing package " $1
echo "###############################################################################"
echo
tput sgr0
sudo pacman -S --noconfirm --needed $1
fi
}
func_category() {
tput setaf 5;
echo "################################################################"
echo "Installing software for category " $1
echo "################################################################"
echo;tput sgr0
}
###############################################################################
func_category Accessories
list=(
conky
grub-customizer
lolcat
banner
figlet
asciiquarium
cowfortune
bash-pipes
cava
tty-clock
xarg
)
count=0
for name in "${list[@]}" ; do
count=$[count+1]
tput setaf 3;echo "Installing package nr. "$count " " $name;tput sgr0;
func_install $name
done
###############################################################################
#func_category Development
#list=(
#)
#count=0
#for name in "${list[@]}" ; do
# count=$[count+1]
# tput setaf 3;echo "Installing package nr. "$count " " $name;tput sgr0;
# func_install $name
#done
###############################################################################
#func_category Grapics
#list=(
#)
#count=0
#for name in "${list[@]}" ; do
# count=$[count+1]
# tput setaf 3;echo "Installing package nr. "$count " " $name;tput sgr0;
# func_install $name
#done
###############################################################################
func_category Internet
list=(
google-chrome
tor
qbittorrent
)
count=0
for name in "${list[@]}" ; do
count=$[count+1]
tput setaf 3;echo "Installing package nr. "$count " " $name;tput sgr0;
func_install $name
done
###############################################################################
func_category Multimedia
list=(
vlc
ncmpcpp
)
count=0
for name in "${list[@]}" ; do
count=$[count+1]
tput setaf 3;echo "Installing package nr. "$count " " $name;tput sgr0;
func_install $name
done
###############################################################################
func_category Office
list=(
sublime-text-dev
)
count=0
for name in "${list[@]}" ; do
count=$[count+1]
tput setaf 3;echo "Installing package nr. "$count " " $name;tput sgr0;
func_install $name
done
###############################################################################
func_category System
list=(
sed
neofetch
cpufetch-git
xfce4-terminal
tilix
cool-retro-term
bashtop
bpytop
mc
ranger
)
count=0
for name in "${list[@]}" ; do
count=$[count+1]
tput setaf 3;echo "Installing package nr. "$count " " $name;tput sgr0;
func_install $name
done
###############################################################################
tput setaf 11;
echo "################################################################"
echo "Software has been installed"
echo "################################################################"
echo;tput sgr0
###############################################################################
#add conky default file and replace with my custom one
mkdir -p ~/.config/conky && conky --print-config > ~/.config/conky/conky.conf
curl -sSL https://github.com/Slackadays/Clipboard/raw/main/install.sh | bash
echo "install ksysguard (a system monitor) by hand via add/remove software"
echo "also replace the default conky config by the one in this folder"