diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/depm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/depm b/scripts/depm new file mode 100755 index 0000000..307eb09 --- /dev/null +++ b/scripts/depm @@ -0,0 +1,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 |