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 }