dotfiles/installdots.sh
2024-08-10 12:45:20 -03:00

7 lines
202 B
Bash
Executable file

#!/bin/bash
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"
done