mirror of
https://github.com/CompeyDev/dotfiles.git
synced 2024-12-12 04:40:37 +00:00
use symlinks instead of stow
This commit is contained in:
parent
66f7ffe032
commit
07e5a61173
1 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue