dotfiles/installdots.sh

8 lines
202 B
Bash
Raw Normal View History

2024-08-10 10:10:22 -04:00
#!/bin/bash
2024-08-10 11:45:20 -04:00
find -mindepth 1 -maxdepth 1 -type d -not -path '*/\.*' | while read dir; do
fmtdir="$(sed s/\\.\\///g <<<$dir)"
stow -t "$HOME" "$fmtdir"
echo "installed $fmtdir configuration"
2024-08-10 10:10:22 -04:00
done