use symlinks instead of stow

This commit is contained in:
Erica Marigold 2024-04-07 16:49:37 +05:30 committed by GitHub
parent 66f7ffe032
commit 07e5a61173
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"