diff options
| author | stkhan <personal@slickd.xyz> | 2024-01-02 18:59:00 +0000 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2024-01-02 18:59:00 +0000 |
| commit | 233c8975d740db9c94c7adb277c616f89f7e4105 (patch) | |
| tree | 21f65bfea72e643f8514e974819e99b91fb2bcc6 /scripts | |
| parent | 23dc77aaf01c9983ddf05220f412a3e08411d7fd (diff) | |
Move depm to own project and add depmfile
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/depm | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/depm b/scripts/depm deleted file mode 100755 index 307eb09..0000000 --- a/scripts/depm +++ /dev/null @@ -1,17 +0,0 @@ -#!/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 |