-
Notifications
You must be signed in to change notification settings - Fork 0
/
installer.sh
executable file
·553 lines (332 loc) · 10.9 KB
/
installer.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
#!/bin/sh
#Variables for the script
CMOS_PATH=$PWD
CMOS_DIR_EXTRAS=$CMOS_PATH/extras/
CMOS_DIR_SCRIPTS=$CMOS_PATH/src/scripts/
CMOS_DIR_TERMINALS=$CMOS_PATH/src/terminals/
handler()
{
echo -e "\n\n[-] Script interrupted by user."
exit 1
}
# This will run the handler function when a SIGINT is received
trap handler SIGINT
# Function that checks your internet connection
check_internet()
{
if ! curl -s --connect-timeout 8 https://archlinux.org/ &> /dev/null; then
echo -e "\n[-] You don't have an Internet connection !\n"
exit 1
fi
}
# Git config funciton
config_git()
{
chmod +x $CMOS_DIR_SCRIPTS/git/git.sh
$CMOS_DIR_SCRIPTS/git/git.sh
}
# Xorg installation function
install_xorg()
{
echo -e "\n[!] Let's install XORG server for graphics !\n"
sudo pacman -S xorg xorg-server xorg-xinit xorg-twm
if [ $? -ne 0 ]; then
echo -e "\n[-] Error installing XORG. Aborting...\n"
exit 1
fi
echo -e "\n[+] X Server is installed successfully ! Continuing...\n"
}
# Audio installation and config
install_audio()
{
chmod +x $CMOS_DIR_SCRIPTS/audio/audio.sh
$CMOS_DIR_SCRIPTS/audio/audio.sh
}
# Shell Installation (Fish and Zsh)
install_shell()
{
echo -e "\n[!] Let's install FISH and ZSH shells\n"
chmod +x $CMOS_DIR_TERMINALS/fish/fish.sh
$CMOS_DIR_TERMINALS/fish/fish.sh $CMOS_DIR_TERMINALS/fish
chmod +x $CMOS_DIR_TERMINALS/zsh/zsh.sh
$CMOS_DIR_TERMINALS/zsh/zsh.sh $CMOS_DIR_TERMINALS/zsh
echo -e "\n[+] Shells are installed successfully !\n"
}
# Terminal installation (Alacritty and Kitty)
install_terminal()
{
echo -e "\n[!] Let's install ALACRITTY and KITTY terminals !\n"
chmod +x $CMOS_DIR_TERMINALS/alacritty/alacritty.sh
$CMOS_DIR_TERMINALS/alacritty/alacritty.sh $CMOS_DIR_TERMINALS/alacritty
chmod +x $CMOS_DIR_TERMINALS/kitty/kitty.sh
$CMOS_DIR_TERMINALS/kitty/kitty.sh $CMOS_DIR_TERMINALS/kitty
if [ $? -ne 0 ]; then
echo -e "\n[-] Error installing ALACRITTY and KITTY. Aborting...\n"
exit 1
fi
echo -e "\n[+] Terminals set up and installed successfully !\n"
}
# Desktop installation
install_desktop()
{
desktops=("Qtile" "Bspwm" "OpenBox" "Xmonad")
echo -e "\n[!] DEKSTOP and WM installation !\n"
for i in "${!desktops[@]}"; do
echo -n "$((i+1))) ${desktops[i]}"
echo -en "\t"
done
echo -en "\n\n[?] Enter a selection (default=all): "
read selection
if [ -z "$selection" ]; then
selection=$(seq -s, 1 ${#desktops[@]})
fi
IFS=',' read -ra selected_indices <<< "$selection"
# Install selected or all packages
for index in "${selected_indices[@]}"; do
# Validate input
if [[ $index -ge 1 && $index -le ${#desktops[@]} ]]; then
package=${desktops[$((index-1))]}
echo -e "\n[*] Installing $package...\n"
# Run respective script based on selected package
if [ "$package" == "Qtile" ]; then
chmod +x $CMOS_PATH/src/desktops/qtile/qtile.sh
$CMOS_PATH/src/desktops/qtile/qtile.sh $CMOS_PATH/src/desktops/qtile
elif [ "$package" == "Bspwm" ]; then
chmod +x $CMOS_PATH/src/desktops/bspwm/bspwm.sh
$CMOS_PATH/src/desktops/bspwm/bspwm.sh $CMOS_PATH/src/desktops/bspwm
chmod +x $CMOS_DIR_SCRIPTS/polybar/polybar.sh
$CMOS_DIR_SCRIPTS/polybar/polybar.sh $CMOS_DIR_SCRIPTS/polybar
elif [ "$package" == "Xmonad" ]; then
chmod +x $CMOS_PATH/src/desktops/xmonad/xmonad.sh
$CMOS_PATH/src/desktops/xmonad/xmonad.sh $CMOS_PATH/src/desktops/xmonad
elif [ "$package" == "OpenBox" ]; then
chmod +x $CMOS_PATH/src/desktops/openbox/openbox.sh
$CMOS_PATH/src/desktops/openbox/openbox.sh $CMOS_PATH/src/desktops/openbox
else
echo -e "\n[-] Script for $package not found. Skipping...\n"
fi
else
echo -e "\n[-]Invalid option: $index\n"
fi
done
}
# LightDM config and installation
install_lightdm()
{
echo -e "\n[!] LIGHTDM installation !\n"
sudo pacman -S lightdm lightdm-webkit2-greeter
if [ $? -ne 0 ]; then
echo -e "\n[-] Error installing lightDM. Aborting...\n"
exit 1
fi
sudo sed -i "s/#greeter-session=example-gtk-gnome/greeter-session=lightdm-webkit2-greeter/g" /etc/lightdm/lightdm.conf
# LigthDM config
sudo systemctl enable lightdm
if [ $? -ne 0 ]; then
echo -e "\n[-] Error enabling lightDM. Aborting...\n"
fi
echo -e "\n[+] Successfully installed lightDM !\n"
}
# Rofi installation and config
install_rofi()
{
echo -e "\n[!] ROFI installation !\n"
# Install rofi and the icon theme
sudo pacman -S rofi papirus-icon-theme
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed to install rofi and papirus-icon-theme.\n"
exit 1
fi
# Create or ensure the rofi config directory exists
mkdir -p $HOME/.config/rofi
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed to create the rofi directory.\n"
exit 1
fi
# Copy the rofi config file
if ! cp -rv $CMOS_DIR_SCRIPTS/rofi/src/* $HOME/.config/rofi; then
echo -e "\n[-] Failed to copy the rofi config.\n"
exit 1
fi
}
# Install fonts
install_fonts()
{
echo -e "\n[!] FONTS installation !\n"
chmod +x $CMOS_PATH/src/fonts/fonts.sh
$CMOS_PATH/src/fonts/fonts.sh
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed to install fonts\n"
exit 1
fi
echo -e "\n[+] Fonts are installed !\n"
}
# Paru config
install_paru()
{
echo -e "\n[!] PARU installation !\n"
# Create or ensure .repos directory exists
mkdir -p $HOME/.repos
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed to create .repos directory.\n"
exit 1
fi
# Change to .repos directory
cd $HOME/.repos
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed to change to .repos directory.\n"
exit 1
fi
# Clone paru repository if it doesn't exist
if [ ! -d "$HOME/.repos/paru" ]; then
git clone https://aur.archlinux.org/paru.git
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed to clone paru repository\n"
exit 1
fi
fi
# Change to paru directory and install
cd $HOME/.repos/paru
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed to change to paru directory.\n"
echo 1
fi
makepkg -si
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed to install paru\n"
exit 1
fi
}
# Programming languages installation
install_lang()
{
echo -e "\n[!] PROGRAMMING LANGUAGES installation\n"
chmod +x $CMOS_PATH/src/prg-lan/prg-lan.sh
$CMOS_PATH/src/prg-lan/prg-lan.sh
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed install the programming languages...\n"
exit 1
fi
echo -e "\n[+] Python, Java, C, etc... Set up correctly !\n"
}
# Base packages installation
install_base()
{
echo -e "\n[!] BASE PACKAGES installation\n"
chmod +x $CMOS_DIR_SCRIPTS/base-pkg/base_pkg.sh
$CMOS_DIR_SCRIPTS/base-pkg/base_pkg.sh
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed install the base packages for the environment...\n"
exit 1
fi
echo -e "\n[+] Packages installed successfully !\n"
}
# Base Picom file config
install_picom()
{
echo -e "\n[!] PICOM SETUP !\n"
# Create or ensure the picom config directory exists
mkdir -p $HOME/.config/picom
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed to create the picom directory.\n"
exit 1
fi
# Copy the rofi config file
if ! cp -rv $CMOS_DIR_SCRIPTS/picom/src/* $HOME/.config/picom; then
echo -e "\n[-] Failed to copy the rofi config.\n"
exit 1
fi
echo -e "\n[+] Picom set up successfully !\n"
}
# Black arch packages installation
install_blackarch()
{
chmod +x $CMOS_DIR_SCRIPTS/black-arch/black-arch.sh
$CMOS_DIR_SCRIPTS/black-arch/black-arch.sh
sudo pacman -Syyyu
if [ $? -ne 0 ]; then
echo -e "\n[-] Impossible synchronize the database\n"
exit 1
fi
echo -e "\n[+] Black arch successfully synchronised !\n"
}
# Browser installation (Brave)
install_browser()
{
echo -e "\n[!] BRAVE installation !\n"
paru -S brave-bin
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed to install Brave\n"
exit 1
fi
echo -e "\n[+] Brave is installed successfully !\n"
}
# Theme installation and config
install_themes()
{
echo -e "\n[!] THEME Material Black Blueberry !\n"
#icons=$(unzip $CMOS_PATH/extras/themes/Material-Black-Blueberry-Suru_1.9.3.zip)
#theme=$(unzip $CMOS_PATH/extras/themes/Material-Black-Blueberry-2.9.9-05.zip)
#sudo mv $icons /usr/share/icons
#sudo mv $theme /usr/share/themes
#if [ $? -ne 0 ]; then
# echo -e "\n[-] Failed to config the theme and the icons...\n"
#exit 1
#fi
if ! cp -v $CMOS_DIR_EXTRAS/.gtkrc-2.0 $HOME; then
echo -e "\n[-] Failed to copy the .gtkrc-2.0 config.\n"
exit 1
fi
mkdir -p $HOME/.config/gtk-3.0
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed to install Brave\n"
exit 1
fi
if ! cp -v $CMOS_DIR_EXTRAS/settings.ini $HOME/.config/gtk-3.0; then
echo -e "\n[-] Failed to copy the rofi config.\n"
exit 1
fi
echo -e "\n[+] theme and icons are installed successfully !\n"
}
# Xprofile configuration settings
final_config ()
{
echo -e "\n[-] Xprofile settings ! \n"
cp $CMOS_PATH/extras/.xprofile $HOME
if [ $? -ne 0 ]; then
echo -e "\n[-] Failed to set up the final config...\n"
exit 1
fi
echo -e "\n[+] BFinal config set up successfully !\n"
}
# Main script
echo -en "\n[?] Do you want to start the installation and CM-OS set up? [y/n] : "
read START_ANSWER
if [[ $START_ANSWER = [Yy] || -z $START_ANSWER ]]; then
check_internet
echo -e "\n[+] Starting installation...\n"
sleep 1
config_git
install_xorg
install_audio
sleep 1
install_shell
install_terminal
install_desktop
install_lightdm
install_rofi
sleep 1
install_fonts
install_paru
install_lang
install_base
install_picom
install_blackarch
install_browser
install_themes
final_config
else
echo -e "\n[-] Installation aborted.\n"
exit 1
fi
# Author @napoknot21