dotfiles/installdots.sh

13 lines
281 B
Bash
Raw Permalink Normal View History

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