From 2e2309573330210383650c65675c60973c8a0b02 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 28 Feb 2024 17:56:16 +0100 Subject: [PATCH] Update scripts/install.sh --- scripts/install.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 1cf0ed1..ed8caea 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -17,23 +17,23 @@ downloadAndInstallPackages() { DOTFILES_CONFIG="$HOME/.config" cd "$DOTFILES_CONFIG" || { echo "Couldn't cd into '$DOTFILES_CONFIG'." 1>&2 && exit 1; } - if [[ ! -d "dwmblocks" ]]; then - cloneAndMake "dwmblocks" "https://gitlab.com/slococo/cdwmblocks.git" + if [[ ! -d "cdwmblocks" ]]; then + cloneAndMake "cdwmblocks" "https://gitlab.com/slococo/cdwmblocks.git" fi - if [[ ! -d "dwm" ]]; then - cloneAndMake "dwm" "https://gitlab.com/slococo/cdwm.git" + if [[ ! -d "cdwm" ]]; then + cloneAndMake "cdwm" "https://gitlab.com/slococo/cdwm.git" fi - if [[ ! -d "st" ]]; then - cloneAndMake "st" "https://gitlab.com/slococo/cst.git" + if [[ ! -d "cst" ]]; then + cloneAndMake "cst" "https://gitlab.com/slococo/cst.git" fi - if [[ ! -d "dmenu" ]]; then - cloneAndMake "dmenu" "https://gitlab.com/slococo/cdmenu.git" + if [[ ! -d "cdmenu" ]]; then + cloneAndMake "cdmenu" "https://gitlab.com/slococo/cdmenu.git" fi if [[ ! -d "clipmenu" ]]; then cloneAndMake "clipmenu" "https://github.com/cdown/clipmenu.git" fi - if [[ ! -d "slock" ]]; then - cloneAndMake "slock" "https://gitlab.com/slococo/cslock.git" + if [[ ! -d "cslock" ]]; then + cloneAndMake "cslock" "https://gitlab.com/slococo/cslock.git" fi }