From b6bf2856a88b133744b29687d8ba8424392b430e Mon Sep 17 00:00:00 2001 From: Sencyy Date: Mon, 14 Oct 2024 15:59:14 -0300 Subject: [PATCH] add a different message when installing wallpapers --- installdots.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/installdots.sh b/installdots.sh index bccc098..d2c62bf 100755 --- a/installdots.sh +++ b/installdots.sh @@ -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