-
Notifications
You must be signed in to change notification settings - Fork 0
/
terminal-setup.sh
executable file
·364 lines (346 loc) · 11.3 KB
/
terminal-setup.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
#!/bin/bash
clear
# echo "-------------------------------------"
# echo "------- HELP INFORMATION -------"
# echo "-------------------------------------"
show_help() {
echo "Usage: $0 [options]"
echo "Options:"
echo " -H, --help Display this help message"
echo " -A, --author Display author information"
echo " -V, --version Display version information"
}
show_version() {
echo "terminal-zsh-script Version 2.0"
}
show_author() {
echo -e "AUTHOR:
Vuk1lis
WEBSITE:
https://vukilis.github.io/website/
GITHUB:
https://github.com/vukilis
NAME:
terminal-zsh-script
VERSION:
2.0"
}
while [[ $# -gt 0 ]]; do
case "$1" in
--help | -H)
show_help
exit 0
;;
--author | -A)
show_author
exit 0
;;
--version | -V)
show_version
exit 0
;;
*)
echo "Invalid option: $1"
show_help
exit 1
;;
esac
shift
done
# echo "--------------------------------------"
# echo "----- TERMINAL INSTALLATION -----"
# echo "--------------------------------------"
title="Terminal installation"
prompt="Choose terminal to install: "
terminals=("Terminator" "Alacrity" "Kitty" "xfce")
basedOn="What is your distro based on: "
basedOS=("Debian" "Arch" "openSUSE" "Fedora")
echo -e "For more information check $0 --help\n"
echo -e "$title\n"
PS3="$prompt"
checkDistroName(){
echo -e "System name is: $( (lsb_release -is || cat /etc/*release || uname -o ) 2>/dev/null | head -n1 ) \n"
}
debianTheme(){
bash ./scripts/debian-zsh-setup.sh
}
archTheme(){
bash ./scripts/arch-zsh-setup.sh
}
openSUSETheme(){
bash ./scripts/openSUSE-zsh-setup.sh
}
fedoraTheme(){
bash ./scripts/fedora-zsh-setup.sh
}
checkCurlDebian(){
PKG="curl"
check=$(dpkg-query -W --showformat='${Status}\n' $PKG | grep "Already installed")
echo Checking for $PKG: $check
if [ "" = "$check" ]; then
echo "No $PKG. Setting up $PKG."
sudo apt install -y $PKG
fi
}
checkCurlArch(){
PKG="curl";
check="$(sudo pacman -Qs --color always "${PKG}" | grep "local" | grep "${PKG} ")"
if [ -n "${check}" ] ; then
echo "${PKG} is installed"
elif [ -z "${check}" ] ; then
echo "${PKG} is NOT installed"
sudo pacman -Sy $PKG
fi;
}
checkCurlOpenSUSE(){
PKG="curl";
if [ ! command -v $PKG &> /dev/null ]; then
echo "curl is not installed. Installing..."
sudo zypper install -y curl
echo "curl has been installed."
else
echo "curl is already installed."
fi
}
checkCurlFedora(){
PKG="curl";
if ! command -V $PKG &> /dev/null
then
echo "curl is not installed. Installing..."
sudo dnf install -y curl
echo "curl has been installed."
else
echo "curl is already installed."
fi
}
terminatorInstallDebian(){
sudo apt install -y terminator
mkdir $HOME/.config/terminator/
cp config/terminator.conf $HOME/.config/terminator/config
}
terminatorInstallArch(){
sudo pacman -S terminator --noconfirm
mkdir $HOME/.config/terminator/
cp config/terminator.conf $HOME/.config/terminator/config
}
terminatorInstallopenSUSE(){
sudo zypper --non-interactive install terminator
mkdir $HOME/.config/terminator/
cp config/terminator.conf $HOME/.config/terminator/config
}
terminatorInstallFedora(){
sudo dnf install -y terminator
mkdir $HOME/.config/terminator/
cp config/terminator.conf $HOME/.config/terminator/config
}
alacrittyInstallDebian(){
sudo curl https://sh.rustup.rs -sSf | sh -s -- -y
source $HOME/.cargo/env
sudo apt-get install cmake pkg-config libfreetype6-dev libfontconfig1-dev libxcb-xfixes0-dev libxkbcommon-dev python3 -y
git clone https://github.com/jwilm/alacritty.git
cd alacritty
cargo build --release
sudo cp target/release/alacritty /usr/local/bin
sudo cp extra/logo/alacritty-term.svg /usr/share/pixmaps/Alacritty.svg
sudo desktop-file-install extra/linux/Alacritty.desktop
sudo update-desktop-database
sudo mkdir -p /usr/local/share/man/man1
gzip -c extra/alacritty.man | sudo tee /usr/local/share/man/man1/alacritty.1.gz > /dev/null
cd ..
mkdir $HOME/.config/alacritty/
cp config/alacritty.toml $HOME/.config/alacritty/alacritty.toml
}
alacrittyInstallArch(){
# sudo pacman -S alacritty --noconfirm
sudo curl https://sh.rustup.rs -sSf | sh -s -- -y
source $HOME/.cargo/env
pacman -S cmake freetype2 fontconfig pkg-config make libxcb libxkbcommon python
git clone https://github.com/jwilm/alacritty.git
cd alacritty
cargo build --release
sudo cp target/release/alacritty /usr/local/bin
sudo cp extra/logo/alacritty-term.svg /usr/share/pixmaps/Alacritty.svg
sudo desktop-file-install extra/linux/Alacritty.desktop
sudo update-desktop-database
sudo mkdir -p /usr/local/share/man/man1
gzip -c extra/alacritty.man | sudo tee /usr/local/share/man/man1/alacritty.1.gz > /dev/null
cd ..
mkdir $HOME/.config/alacritty/
cp config/alacritty.toml $HOME/.config/alacritty/alacritty.toml
}
alacrittyInstallopenSUSE(){
sudo zypper --non-interactive install alacritty
mkdir $HOME/.config/alacritty/
cp config/alacritty.toml $HOME/.config/alacritty/alacritty.toml
}
alacrittyInstallFeodra(){
sudo dnf install -y alacritty
mkdir $HOME/.config/alacritty/
cp config/alacritty.toml $HOME/.config/alacritty/alacritty.toml
}
kittyInstallDebian(){
sudo apt install -y kitty
mkdir $HOME/.config/kitty/
cp config/kitty.conf $HOME/.config/kitty/kitty.conf
}
kittyInstallArch(){
yay -S kitty --noconfirm
mkdir $HOME/.config/kitty/
cp config/kitty.conf $HOME/.config/kitty/kitty.conf
}
kittyInstallopenSUSE(){
sudo zypper --non-interactive install kitty
mkdir $HOME/.config/kitty/
cp config/kitty.conf $HOME/.config/kitty/kitty.conf
}
kittyInstallFedora(){
sudo dnf install -y kitty
mkdir $HOME/.config/kitty/
cp config/kitty.conf $HOME/.config/kitty/kitty.conf
}
xfceInstallDebian(){
sudo apt install -y xfce4-terminal
mkdir -p $HOME/.config/xfce4/xfconf/xfce-perchannel-xml
cp config/xfce4-terminal.xml $HOME/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-terminal.xml
}
xfceInstallArch(){
sudo pacman -S xfce4-terminal --noconfirm # yay -S fce4-terminal
mkdir -p $HOME/.config/xfce4/xfconf/xfce-perchannel-xml
cp config/xfce4-terminal.xml $HOME/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-terminal.xml
}
xfceInstallopenSUSE(){
sudo zypper --non-interactive install xfce4-terminal
mkdir -p $HOME/.config/xfce4/xfconf/xfce-perchannel-xml
cp config/xfce4-terminal.xml $HOME/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-terminal.xml
}
xfceInstallFedora(){
sudo dnf install -y xfce4-terminal
mkdir -p $HOME/.config/xfce4/xfconf/xfce-perchannel-xml
cp config/xfce4-terminal.xml $HOME/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-terminal.xml
}
select terminal in "${terminals[@]}" "Quit"; do
case "$REPLY" in
1) echo -e "You choose to install $terminal\n" # Terminator
PS3="$basedOn"
select based in "${basedOS[@]}"; do
case "$REPLY" in
1) echo "Your system is based on $based"
checkDistroName
terminatorInstallDebian
debianTheme
break;;
2) echo "Your system is based on $based"
checkDistroName
terminatorInstallArch
archTheme
break;;
3) echo "Your system is based on $based"
checkDistroName
terminatorInstallopenSUSE
openSUSETheme
break;;
4) echo "Your system is based on $based"
checkDistroName
terminatorInstallFedora
fedoraTheme
break;;
*) echo "- $REPLY is invalid option. Try another one. -";continue;;
esac
done
break;;
2) echo -e "You choose to install $terminal\n" # Alacritty
PS3="$basedOn"
select based in "${basedOS[@]}"; do
case "$REPLY" in
1) echo "Your system is based on $based"
checkDistroName
checkCurlDebian
alacrittyInstallDebian
debianTheme
break;;
2) echo "Your system is based on $based"
checkDistroName
checkCurlArch
alacrittyInstallArch
archTheme
break;;
3) echo "Your system is based on $based"
checkDistroName
checkCurlOpenSUSE
alacrittyInstallopenSUSE
openSUSETheme
break;;
4) echo "Your system is based on $based"
checkDistroName
checkCurlFedora
alacrittyInstallFeodra
fedoraTheme
break;;
*) echo "- $REPLY is invalid option. Try another one. -";continue;;
esac
done
# sudo apt install -y alacritty
break;;
3) echo -e "You choose to install $terminal\n" # Kitty
PS3="$basedOn"
select based in "${basedOS[@]}"; do
case "$REPLY" in
1) echo "Your system is based on $based"
checkDistroName
kittyInstallDebian
debianTheme
break;;
2) echo "Your system is based on $based"
checkDistroName
kittyInstallArch
archTheme
break;;
3) echo "Your system is based on $based"
checkDistroName
kittyInstallopenSUSE
openSUSETheme
break;;
4) echo "Your system is based on $based"
checkDistroName
kittyInstallFedora
fedoraTheme
break;;
*) echo "- $REPLY is invalid option. Try another one. -";continue;;
esac
done
break;;
4) echo -e "You choose to install $terminal\n" # xfce
PS3="$basedOn"
select based in "${basedOS[@]}"; do
case "$REPLY" in
1) echo "Your system is based on $based"
checkDistroName
xfceInstallDebian
debianTheme
break;;
2) echo "Your system is based on $based"
checkDistroName
xfceInstallArch
archTheme
break;;
3) echo "Your system is based on $based"
checkDistroName
xfceInstallopenSUSE
openSUSETheme
break;;
4) echo "Your system is based on $based"
checkDistroName
xfceInstallFedora
fedoraTheme
break;;
*) echo "- $REPLY is invalid option. Try another one. -";continue;;
esac
done
break;;
$((${#terminals[@]}+1))) echo "Goodbye!"; break;;
*) echo "- $REPLY is invalid option. Try another one. -";continue;;
esac
done
# echo "--------------------------------------"
# echo "----- INSTALLATION FINISH -----"
# echo "--------------------------------------"