blob: 307eb094bbef3ee5a3596e27b821b3520ade5aca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
os=$(cat /etc/os-release | grep ID | head -n 1)
install_arch() {
pacman -S --needed base-devel xorg-xserver xorg-xinit feh imagemagick adobe-source-code-pro-fonts ttf-joypixels unclutter picom dunst galculator light calcurse pavucontrol
install_git
}
install_git() {
case $os in
"ID=arch") install_arch;;
*) echo "Unknown OS\n You must manually install dependencies"
quit;;
esac
|