add a different message when installing wallpapers

This commit is contained in:
Sencyy 2024-10-14 15:59:14 -03:00
parent 814d0f3cfc
commit b6bf2856a8
No known key found for this signature in database
GPG key ID: 956AB8FEF9FD53F6

View file

@ -3,5 +3,10 @@
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"
if [ $fmtdir = "wall" ]; then
echo "installed wallpapers"
else
echo "installed $fmtdir configuration"
fi
done