From c79b37b7c83929e3639ddcbecca2134024fa989a Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 24 Jul 2023 13:11:27 +0200 Subject: [PATCH] Update URLs --- scripts/install.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 86f0c18..1cf0ed1 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -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 }