-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·712 lines (399 loc) · 12.4 KB
/
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
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
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
#!/usr/bin/env bash
set -e
if [[ "$(cat /etc/system-release)" != "Fedora release 40 (Forty)" ]] || [[ "${XDG_CURRENT_DESKTOP}" != "i3" ]]; then
echo "This script is only designed to work on Fedora i3 Spin 40. Now exiting."
exit 1
fi
echo "==============================="
echo "= Sid's Fedora Install Script ="
echo "==============================="
echo
echo "If you are not me, then you probably shouldn't be running this! ;)"
echo
echo "The setup will begin in 5 seconds. Ctrl+C to cancel."
echo
echo -n "5 seconds... "
sleep 1
echo -n "4 seconds... "
sleep 1
echo -n "3 seconds... "
sleep 1
echo -n "2 seconds... "
sleep 1
echo -n "1 second... "
sleep 1
echo "Starting now."
SCRIPT_DIR=$(dirname -- "$(realpath $0)")
sudo dnf -y upgrade
##############
# RPM Fusion #
#############
sudo dnf -y install \
https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm \
https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
########
# GRUB #
########
sudo sed -i 's/GRUB_TIMEOUT=5/GRUB_TIMEOUT=1/g' /etc/default/grub
sudo grub2-mkconfig -o /etc/grub2.cfg
sudo grub2-mkconfig -o /etc/grub2-efi.cfg
########
# Bash #
########
cp ${SCRIPT_DIR}/bash/profile ~/.profile
cp ${SCRIPT_DIR}/bash/bash_aliases ~/.bash_aliases
cp ${SCRIPT_DIR}/bash/bash_profile ~/.bash_profile
cp ${SCRIPT_DIR}/bash/bashrc ~/.bashrc
#################
# XDG User Dirs #
#################
mkdir ~/bin/
mkdir ~/Code/
mkdir ~/ISOs/
mkdir ~/VMs/
rm -r ~/Desktop/
rm -r ~/Documents/
rm -r ~/Public/
rm -r ~/Templates/
cp ${SCRIPT_DIR}/xdg-user-dirs/user-dirs.dirs ~/.config/
xdg-user-dirs-update
######
# i3 #
######
mkdir -p ~/.config/i3/
cp -R ${SCRIPT_DIR}/i3/. ~/.config/i3/
#############
# Autologin #
#############
sudo cp ${SCRIPT_DIR}/lightdm/autologin.conf /etc/lightdm/lightdm.conf.d/autologin.conf
sudo groupadd -r autologin
sudo usermod -aG autologin ${USER}
sudo gpasswd -a ${USER} autologin
###########
# Polybar #
###########
sudo dnf -y install polybar
cp -R ${SCRIPT_DIR}/polybar/. ~/.config/polybar/
##########
# Thunar #
##########
sudo dnf -y install thunar-archive-plugin thunar-volman
cp ${SCRIPT_DIR}/thunar/thunar.xml ~/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml
cp ${SCRIPT_DIR}/thunar/thunar-volman.xml ~/.config/xfce4/xfconf/xfce-perchannel-xml/thunar-volman.xml
#############
# Xarchiver #
#############
sudo dnf -y install xarchiver
cp ${SCRIPT_DIR}/xarchiver/xarchiverrc ~/.config/xarchiver/xarchiverrc
#########
# picom #
#########
sudo dnf -y install picom
cp -R ${SCRIPT_DIR}/picom/. ~/.config/picom/
############
# Nitrogen #
############
sudo dnf -y install nitrogen
cp -R ${SCRIPT_DIR}/nitrogen/. ~/.config/nitrogen/
backgrounds=(
"https://images.pexels.com/photos/1323550/pexels-photo-1323550.jpeg"
"https://images.pexels.com/photos/459225/pexels-photo-459225.jpeg"
"https://images.pexels.com/photos/1631677/pexels-photo-1631677.jpeg"
"https://images.pexels.com/photos/310452/pexels-photo-310452.jpeg"
)
mkdir ~/Pictures/Backgrounds
cd ~/Pictures/Backgrounds
for url in ${backgrounds[@]}; do
curl -O ${url}
done
########
# Rofi #
########
sudo dnf -y install rofi
cp -R ${SCRIPT_DIR}/rofi/. ~/.config/rofi/
#########
# Dunst #
#########
cp -R ${SCRIPT_DIR}/dunst/. ~/.config/dunst/
##################
# Xfce4 Terminal #
##################
mkdir -p ~/.config/xfce4/terminal/
mkdir -p ~/.local/share/xfce4/terminal/colorschemes/
cp ${SCRIPT_DIR}/xfce4-terminal/terminalrc ~/.config/xfce4/terminal/terminalrc
cp ${SCRIPT_DIR}/xfce4-terminal/nord.theme ~/.local/share/xfce4/terminal/colorschemes/nord.theme
#########
# Fonts #
#########
sudo dnf -y install google-noto-sans-fonts google-noto-serif-fonts
sudo dnf -y install dejavu-fonts-all
sudo dnf -y install fira-code-fonts
# Korean fonts
sudo dnf -y install google-noto-sans-cjk-fonts google-noto-serif-cjk-fonts adobe-source-han-sans-kr-fonts adobe-source-han-serif-kr-fonts
# FontAwesome icons
sudo dnf -y install fontawesome-6-free-fonts fontawesome-6-brands-fonts
# Emoji
sudo dnf -y install google-noto-emoji-fonts
##########
# Themes #
##########
sudo dnf -y install arc-theme
wget https://github.com/vinceliuice/Qogir-theme/archive/refs/heads/master.zip -O /tmp/qogir-theme.zip
unzip /tmp/qogir-theme.zip -d /tmp/
/tmp/Qogir-theme-master/install.sh
cp -R ${SCRIPT_DIR}/gtk/gtk-2.0/. ~/.config/gtk-2.0/
cp -R ${SCRIPT_DIR}/gtk/gtk-3.0/. ~/.config/gtk-3.0/
cp -R ${SCRIPT_DIR}/gtk/gtk-4.0/. ~/.config/gtk-4.0/
#################################
# Greenclip - clipboard manager #
#################################
wget https://github.com/erebe/greenclip/releases/download/v4.2/greenclip -O ~/bin/greenclip
chmod +x ~/bin/greenclip
cp ${SCRIPT_DIR}/greenclip/greenclip.toml ~/.config/greenclip.toml
##############
# Audio apps #
##############
sudo dnf -y install audacity
sudo dnf -y install ffmpeg --allowerasing
##############
# Image apps #
##############
sudo dnf -y install inkscape
########
# GIMP #
########
sudo dnf -y install gimp
mkdir -p ~/.config/GIMP/2.10/
cp ${SCRIPT_DIR}/gimp/gimprc ~/.config/GIMP/2.10/gimprc
##############
# Video apps #
##############
sudo dnf -y install handbrake-gui
sudo dnf -y install yt-dlp
#######
# mpv #
#######
sudo dnf -y install mpv
mkdir -p ~/.config/mpv/
cp ${SCRIPT_DIR}/mpv/mpv.conf ~/.config/mpv/mpv.conf
#######
# PHP #
#######
sudo dnf -y install php
sudo dnf -y install php-devel php-pear libyaml-devel
printf "\n" | sudo pecl install yaml
sudo dnf -y install php-pecl-xdebug3
echo "extension=yaml.so" | sudo tee /etc/php.d/50-yaml.ini
# Add coverage mode
sudo sed -i 's/;xdebug.mode = develop/xdebug.mode = coverage/g' /etc/php.d/15-xdebug.ini
sudo dnf -y install composer
##############
# Node / NPM #
##############
sudo dnf -y install nodejs nodejs-npm
##########
# Docker #
##########
sudo dnf -y install docker docker-compose
sudo usermod -aG docker ${USER}
sudo systemctl enable docker
#TODO bash ${SCRIPT_DIR}/scripts/docker-pull.sh
#############
# Autotrash #
#############
sudo dnf -y install pipx
pipx install autotrash
# Make Trash folders
mkdir -p ~/.local/share/Trash/{expunged,files,info}
chmod -R 700 ~/.local/share/Trash/{expunged,files,info}
autotrash -d 14 --install
###################
# Printing to PDF #
###################
sudo dnf -y install cups-pdf
sudo cp ${SCRIPT_DIR}/cups/cups-pdf.conf /etc/cups/cups-pdf.conf
############
# Scanning #
############
mkdir ~/Pictures/Scans
sudo dnf -y install simple-scan
gsettings set org.gnome.SimpleScan text-dpi 300
gsettings set org.gnome.SimpleScan photo-dpi 300
gsettings set org.gnome.SimpleScan jpeg-quality 80
gsettings set org.gnome.SimpleScan save-directory "file://${HOME}/Pictures/Scans"
###########################
# Disable internal webcam #
###########################
# Only disable this USB device if it's an integrated webcam
if grep -q "Laptop_Integrated_Webcam_1.3M" /sys/bus/usb/devices/2-1.5/product; then
echo 0 | sudo tee /sys/bus/usb/devices/2-1.5/bConfigurationValue
fi
##############
# OBS Studio #
##############
sudo dnf -y install obs-studio
###########
# SSH key #
###########
ssh-keygen -t ed25519 -C "sid@sidroberts.co.uk" -f ~/.ssh/id_ed25519 -N ""
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
#######
# Git #
#######
sudo dnf -y install git
cp ${SCRIPT_DIR}/git/gitconfig ~/.gitconfig
##########
# GitHub #
##########
sudo dnf -y install 'dnf-command(config-manager)'
sudo dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo
sudo dnf -y install gh
########
# Zoom #
########
sudo dnf -y install https://zoom.us/client/5.16.6.382/zoom_x86_64.rpm
#################
# XP Pen tablet #
#################
wget "https://www.xp-pen.com/download/file.html?id=1948&pid=430&ext=rpm" -O /tmp/xp-pen.rpm
sudo dnf -y install /tmp/xp-pen.rpm
########
# nano #
########
cp ${SCRIPT_DIR}/nano/nanorc ~/.nanorc
##############
# MIME types #
##############
cp ${SCRIPT_DIR}/mime/mimeapps.list ~/.config/mimeapps.list
####################
# GTK File Chooser #
####################
gsettings set org.gtk.Settings.FileChooser sort-directories-first true
##############
# VirtualBox #
##############
# Only install on bare metal
if [ ! -e /dev/vboxguest ]; then
sudo dnf -y install virtualbox
vboxmanage setproperty machinefolder ~/VMs
fi
##########################
# VirtualBox guest utils #
##########################
# Only install within a VM
if [ -e /dev/vboxguest ]; then
sudo dnf -y install virtualbox-guest-additions
fi
##########
# Python #
##########
sudo dnf -y install python3
sudo dnf -y install python3-pip
###########
# VS Code #
###########
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
sudo cp ${SCRIPT_DIR}/vs-code/vscode.repo /etc/yum.repos.d/vscode.repo
sudo dnf -y install code
mkdir -p ~/.config/Code/
mkdir -p ~/.config/Code/User/
cp ${SCRIPT_DIR}/vs-code/Preferences ~/.config/Code/Preferences
cp ${SCRIPT_DIR}/vs-code/settings.json ~/.config/Code/User/settings.json
# Extension: Add link to manual for PHP & WP function hints
code --install-extension Abromeit.add-hint-link-to-manual
# Extension: Auto Rename Tag
code --install-extension formulahendry.auto-rename-tag
# Extension: Better Comments
code --install-extension aaron-bond.better-comments
# Extension: Docker
code --install-extension ms-azuretools.vscode-docker
# Extension: Dotenv Official +Vault
code --install-extension dotenv.dotenv-vscode
# Extension: EditorConfig for VS Code
code --install-extension EditorConfig.EditorConfig
# Extension: GitLens - Git supercharged
code --install-extension eamodio.gitlens
# Extension: Gremlins tracker for Visual Studio Code
code --install-extension nhoizey.gremlins
# Extension: markdownlint
code --install-extension DavidAnson.vscode-markdownlint
# Extension: Nord
code --install-extension arcticicestudio.nord-visual-studio-code
# Extension: npm Instellisense
code --install-extension christian-kohler.npm-intellisense
# Extension: PHP Intelephense
code --install-extension bmewburn.vscode-intelephense-client
# Extension: Psalm (PHP Static Analysis Linting Machine)
code --install-extension getpsalm.psalm-vscode-plugin
# Extension: Python
code --install-extension ms-python.python
# Extension: Sass (.sass only)
code --install-extension syler.sass-indented
# Extension: SQLite
code --install-extension alexcvzz.vscode-sqlite
# Extension: Twig
code --install-extension whatwedo.twig
##########
# Jekyll #
##########
sudo dnf install -y rubygem-jekyll ruby-devel
################
# markdownlint #
################
sudo npm install -g markdownlint-cli
#######################################
# Projecteur - for Logitech Spotlight #
#######################################
sudo dnf -y install https://github.com/jahnf/Projecteur/releases/download/v0.10/projecteur-0.10_fedora-38-x86_64.rpm
mkdir ~/.config/Projecteur
cp ${SCRIPT_DIR}/projecteur/Projecteur.conf ~/.config/Projecteur/Projecteur.conf
########
# Meld #
########
sudo dnf -y install meld
gsettings set org.gnome.meld highlight-current-line true
gsettings set org.gnome.meld highlight-syntax true
gsettings set org.gnome.meld indent-width 4
gsettings set org.gnome.meld insert-spaces-instead-of-tabs true
gsettings set org.gnome.meld prefer-dark-theme true
gsettings set org.gnome.meld show-line-numbers true
gsettings set org.gnome.meld style-scheme oblivion
gsettings set org.gnome.meld vc-commit-margin 80
########
# Misc #
########
sudo dnf -y install polkit-gnome
sudo dnf -y install acpi
sudo dnf -y install tldr
sudo dnf -y install playerctl
sudo dnf -y install transmission-gtk
sudo dnf -y install gparted
sudo dnf -y install scrot
sudo dnf -y install rclone
######################
# Stuff I don't need #
######################
sudo dnf -y remove azote
sudo dnf -y remove mousepad
#############
# Backlight #
#############
sudo cp backlight/backlight.rules /etc/udev/rules.d/backlight.rules
sudo usermod -aG video ${USER}
###########################
# Download Fedora torrent #
###########################
wget https://torrent.fedoraproject.org/torrents/Fedora-i3-Live-x86_64-39.torrent -O ~/Downloads/Fedora-i3-Live-x86_64-39.torrent
##################
# Add to-do list #
##################
cp ${SCRIPT_DIR}/ToDoList.md ~/
################
# Copy scripts #
################
cp -R ${SCRIPT_DIR}/scripts/. ~/Scripts/
##########
# Reboot #
##########
systemctl reboot