add a different message when installing wallpapers
This commit is contained in:
parent
814d0f3cfc
commit
b6bf2856a8
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue