From e8f073af7ba61b421858f62b6a06c984c9737adc Mon Sep 17 00:00:00 2001 From: stkhan Date: Thu, 7 Dec 2023 21:25:02 +0000 Subject: An unfinished depm --- scripts/depm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 scripts/depm 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 -- cgit v1.2.3