dotfiles/install

11 lines
162 B
Plaintext
Raw Permalink Normal View History

2024-05-21 09:24:01 +00:00
#!/usr/bin/env zsh
pushd $DOTFILES
for folder in $(echo $STOW_FOLDERS | sed "s/,/ /g")
do
echo "stow $folder"
stow -D $folder
stow $folder
done
popd