-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·38 lines (31 loc) · 948 Bytes
/
install.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
#!/usr/bin/bash
## Installation script
DISTRO=$(cat /etc/*-release | grep 'ID=' | awk -F'=' 'NR==1 { print $2 }')
mv ~/.config/xmonad/.Xresources ~/.Xresources
# Install appropriate fonts
if [ $DISTRO == "fedora" ]; then
sudo dnf install \
google-noto-sans-fonts \
fira-code-fonts \
fontawesome-6-free-fonts \
alsa-utils libXScrnSaver libXft libXpm cairo pango
elif [ $DISTRO == "artix" ] || [ $DISTRO == "arch" ]; then
sudo pacman -S noto-fonts \
ttf-fira-code \
ttf-font-awesome \
alsa-utils libxss libxft libxpm cairo pango
else
cat << EOF
Automated font installation isn't supported for $DISTRO.
Please try manually installing the following fonts:
1. Noto Sans
2. Fira Code
3. Font Awesome 6 Free
4. 0xProto Nerd Font
EOF
fi
# Install configurations to ~/.config
cp -r ../xmonad/ ~/.config/xmonad
# TODO: provide wallpapers in repo
echo "exec xmonad" > ~/.xinitrc
echo "exec xmobar" >> ~/.xinitrc