Update scripts/install.sh

This commit is contained in:
Santiago Lo Coco 2024-02-28 17:56:16 +01:00
parent d1d1dd2323
commit 2e23095733
1 changed files with 10 additions and 10 deletions

View File

@ -17,23 +17,23 @@ downloadAndInstallPackages() {
DOTFILES_CONFIG="$HOME/.config" DOTFILES_CONFIG="$HOME/.config"
cd "$DOTFILES_CONFIG" || { echo "Couldn't cd into '$DOTFILES_CONFIG'." 1>&2 && exit 1; } cd "$DOTFILES_CONFIG" || { echo "Couldn't cd into '$DOTFILES_CONFIG'." 1>&2 && exit 1; }
if [[ ! -d "dwmblocks" ]]; then if [[ ! -d "cdwmblocks" ]]; then
cloneAndMake "dwmblocks" "https://gitlab.com/slococo/cdwmblocks.git" cloneAndMake "cdwmblocks" "https://gitlab.com/slococo/cdwmblocks.git"
fi fi
if [[ ! -d "dwm" ]]; then if [[ ! -d "cdwm" ]]; then
cloneAndMake "dwm" "https://gitlab.com/slococo/cdwm.git" cloneAndMake "cdwm" "https://gitlab.com/slococo/cdwm.git"
fi fi
if [[ ! -d "st" ]]; then if [[ ! -d "cst" ]]; then
cloneAndMake "st" "https://gitlab.com/slococo/cst.git" cloneAndMake "cst" "https://gitlab.com/slococo/cst.git"
fi fi
if [[ ! -d "dmenu" ]]; then if [[ ! -d "cdmenu" ]]; then
cloneAndMake "dmenu" "https://gitlab.com/slococo/cdmenu.git" cloneAndMake "cdmenu" "https://gitlab.com/slococo/cdmenu.git"
fi fi
if [[ ! -d "clipmenu" ]]; then if [[ ! -d "clipmenu" ]]; then
cloneAndMake "clipmenu" "https://github.com/cdown/clipmenu.git" cloneAndMake "clipmenu" "https://github.com/cdown/clipmenu.git"
fi fi
if [[ ! -d "slock" ]]; then if [[ ! -d "cslock" ]]; then
cloneAndMake "slock" "https://gitlab.com/slococo/cslock.git" cloneAndMake "cslock" "https://gitlab.com/slococo/cslock.git"
fi fi
} }