From 07e5a61173381f8bdc3cd42fecc3d8264a1bd239 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sun, 7 Apr 2024 16:49:37 +0530 Subject: [PATCH] use symlinks instead of stow --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 355d6b7..6c438bb 100644 --- a/install.sh +++ b/install.sh @@ -4,7 +4,7 @@ set -e git submodule init git submodule update -declare -a deps=("zsh" "zsh-autosuggestions" "zsh-syntax-highlighting" "starship" "exa" "bat" "fastfetch" "stow") +declare -a deps=("zsh" "zsh-autosuggestions" "zsh-syntax-highlighting" "starship" "exa" "bat" "fastfetch") echo "" echo "#############################" @@ -22,9 +22,9 @@ do done echo "" -echo "Stowing apps for user: ${whoami}" +echo "Symlinking configs for user: ${whoami}" -stow -v -R -t $HOME * +find * -exec "ln -s -f {} $HOME/{}" \; echo "" echo "##### ALL DONE"