-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterminal-setup-zsh.sh
executable file
·575 lines (553 loc) · 20.7 KB
/
terminal-setup-zsh.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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
#!/usr/bin/env zsh
clear
# echo "-------------------------------------"
# echo "------- HELP INFORMATION -------"
# echo "-------------------------------------"
show_help() {
echo "Usage: $0 [options]"
echo ""
echo "Options:"
echo " -H, --help Display this help message"
echo " -A, --author Display author information"
echo " -V, --version Display version information"
echo ""
echo "Controls:"
echo "To navigate through menu use buttons [j⬇|k⬆]"
}
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 "---------- CUSTOM MENU ----------"
# echo "--------------------------------------"
# zsh script which offers interactive selection menu
#
# based on the answer by Guss on https://askubuntu.com/a/1386907/1771279
# and
# lukeflo on https://codeberg.org/lukeflo/shell-scripts/src/branch/main/zshmenu.sh
function choose_from_menu() {
local prompt="$1" outvar="$2"
shift
shift
# count had to be assigned the pure number of arguments
local options=("$@") cur=1 count=$# index=0
local esc=$(echo -en "\033") # cache ESC as test doesn't allow esc codes
echo -n "$prompt\n\n"
# measure the rows of the menu, needed for erasing those rows when moving
# the selection
menu_rows=$#
total_rows=$(($menu_rows + 1))
while true
do
index=1
for o in "${options[@]}"
do
if [[ "$index" == "$cur" ]]
then echo -e "\033[38;5;41m➤ \033[0m\033[38;5;35m$o\033[0m" # mark & highlight the current option
else echo " $o"
fi
index=$(( $index + 1 ))
done
printf "\n"
# set mark for cursor
printf "\033[s"
# read in pressed key (differs from bash read syntax)
read -s -r -k key
if [[ $key == k ]] # move up
then cur=$(( $cur - 1 ))
[ "$cur" -lt 1 ] && cur=1 # make sure to not move out of selections scope
elif [[ $key == j ]] # move down
then cur=$(( $cur + 1 ))
[ "$cur" -gt $count ] && cur=$count # make sure to not move out of selections scope
elif [[ "${key}" == $'\n' || $key == '' ]] # zsh inserts newline, \n, for enter - ENTER
then break
fi
# move back to saved cursor position
printf "\033[u"
# erase all lines of selections to build them again with new positioning
for ((i = 0; i < $total_rows; i++)); do
printf "\033[2k\r"
printf "\033[F"
done
done
# pass choosen selection to main body of script
eval $outvar="'${options[$cur]}'"
}
# explicitly declare selections array makes it safer
# declare -a selections
# selections=(
# " Selection A"
# " Selection B"
# " Selection C"
# " Selection D"
# " Selection E"
# )
# call function with arguments:
# $1: Prompt text. newline characters are possible
# $2: Name of variable which contains the selected choice
# $3: Pass all selections to the function
# choose_from_menu "Please make a choice:" selected_choice "${selections[@]}"
# echo "Selected choice: $selected_choice"
# echo "--------------------------------------"
# echo "----- TERMINAL INSTALLATION -----"
# echo "--------------------------------------"
echo -e "For more information check $0 --help\n"
title="Terminal installation"
nkeys="» Navigation keys: [j⬇|k⬆]"
# echo -e "$title\n"
echo -e "$nkeys\n"
checkDistroName(){
echo -e "$( (lsb_release -is || cat /etc/*release || uname -o ) 2>/dev/null | head -n1 )\n"
}
debianTheme(){
bash ./scriptsdebian-zsh-setup.sh
}
archTheme(){
bash ./scriptsarch-zsh-setup.sh
}
openSUSETheme(){
bash ./scriptsopenSUSE-zsh-setup.sh
}
fedoraTheme(){
bash ./scriptsfedora-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
}
# Declare array and choose terminal
declare -a terminals basedOS
terminals=(
"Alacrity"
"Kitty"
"Terminator"
"xfce"
"✖"
)
basedOS=(
"Arch"
"Debian"
"Fedora"
"openSUSE"
"↩"
)
# za /bin/bash odraditi ?!
while true; do
choose_from_menu "Choose terminal to install:" selected_choice "${terminals[@]}"
if [[ "$selected_choice" == "✖" ]]; then
echo "\e[31mGoodbye :(\e[0m"
exit
elif [[ "$selected_choice" == "Alacrity" ]]; then
echo -e "You chose to install \e[32m$selected_choice\e[0m"
while true; do
echo ""
choose_from_menu "What is your distro based on:" selected_choice "${basedOS[@]}"
# if [[ "$selected_choice" == "back" ]]; then
# echo "\e[32m$selected_choice\e[0m"
# break
if [[ "$selected_choice" == "Arch" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlArch
alacrittyInstallArch
archTheme
exit
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
elif [[ "$selected_choice" == "Debian" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlDebian
alacrittyInstallDebian
debianTheme
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
elif [[ "$selected_choice" == "Fedora" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlFedora
alacrittyInstallFeodra
fedoraTheme
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
elif [[ "$selected_choice" == "openSUSE" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlOpenSUSE
alacrittyInstallopenSUSE
openSUSETheme
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
else
break
fi
done
elif [[ "$selected_choice" == "Kitty" ]]; then
echo -e "You chose to install \e[32m$selected_choice\e[0m"
while true; do
echo ""
choose_from_menu "What is your distro based on:" selected_choice "${basedOS[@]}"
if [[ "$selected_choice" == "Arch" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlArch
kittyInstallArch
archTheme
exit
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
elif [[ "$selected_choice" == "Debian" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlDebian
kittyInstallDebian
debianTheme
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
elif [[ "$selected_choice" == "Fedora" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlFedora
kittyInstallFedora
fedoraTheme
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
elif [[ "$selected_choice" == "openSUSE" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlOpenSUSE
kittyInstallopenSUSE
openSUSETheme
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
else
break
fi
done
elif [[ "$selected_choice" == "Terminator" ]]; then
echo -e "You chose to install \e[32m$selected_choice\e[0m"
while true; do
echo ""
choose_from_menu "What is your distro based on:" selected_choice "${basedOS[@]}"
if [[ "$selected_choice" == "Arch" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlArch
terminatorInstallArch
archTheme
exit
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
elif [[ "$selected_choice" == "Debian" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlDebian
terminatorInstallDebian
debianTheme
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
elif [[ "$selected_choice" == "Fedora" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlFedora
terminatorInstallFedora
fedoraTheme
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
elif [[ "$selected_choice" == "openSUSE" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlOpenSUSE
terminatorInstallopenSUSE
openSUSETheme
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
else
break
fi
done
elif [[ "$selected_choice" == "xfce" ]]; then
echo -e "You chose to install \e[32m$selected_choice\e[0m"
while true; do
echo ""
choose_from_menu "What is your distro based on:" selected_choice "${basedOS[@]}"
if [[ "$selected_choice" == "Arch" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlArch
xfceInstallArch
archTheme
exit
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
elif [[ "$selected_choice" == "Debian" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlDebian
xfceInstallDebian
debianTheme
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
elif [[ "$selected_choice" == "Fedora" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlFedora
xfceInstallFedora
fedoraTheme
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
elif [[ "$selected_choice" == "openSUSE" ]]; then
echo "Your system is based on: $selected_choice"
if [[ "$(checkDistroName)" == *"$selected_choice"* ]]; then
echo "Detected by script: \e[32m$(checkDistroName)\e[0m"
checkCurlOpenSUSE
xfceInstallopenSUSE
openSUSETheme
else
echo "Detected by script: \e[31m$(checkDistroName) (Please select $(checkDistroName)!)\e[0m"
continue
fi
exit
else
break
fi
done
else
break
fi
done