Update URLs

This commit is contained in:
Santiago Lo Coco 2023-07-24 13:11:27 +02:00
parent e11c779da1
commit c79b37b7c8
1 changed files with 5 additions and 5 deletions

View File

@ -18,22 +18,22 @@ downloadAndInstallPackages() {
cd "$DOTFILES_CONFIG" || { echo "Couldn't cd into '$DOTFILES_CONFIG'." 1>&2 && exit 1; }
if [[ ! -d "dwmblocks" ]]; then
cloneAndMake "dwmblocks" "https://github.com/santilococo/dwmblocks.git"
cloneAndMake "dwmblocks" "https://gitlab.com/slococo/cdwmblocks.git"
fi
if [[ ! -d "dwm" ]]; then
cloneAndMake "dwm" "https://github.com/santilococo/dwm.git"
cloneAndMake "dwm" "https://gitlab.com/slococo/cdwm.git"
fi
if [[ ! -d "st" ]]; then
cloneAndMake "st" "https://github.com/santilococo/st.git"
cloneAndMake "st" "https://gitlab.com/slococo/cst.git"
fi
if [[ ! -d "dmenu" ]]; then
cloneAndMake "dmenu" "https://github.com/santilococo/dmenu.git"
cloneAndMake "dmenu" "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://github.com/santilococo/slock.git"
cloneAndMake "slock" "https://gitlab.com/slococo/cslock.git"
fi
}