From e52b402dc8e582498b57be011f2bb75a325f0af5 Mon Sep 17 00:00:00 2001 From: Hekuran <62762955+narukeh@users.noreply.github.com> Date: Mon, 6 Jul 2020 13:50:18 +0200 Subject: [PATCH] fix --- .local/bin/statusbar/suntime | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/statusbar/suntime b/.local/bin/statusbar/suntime index 9b7adb7a..268b677e 100755 --- a/.local/bin/statusbar/suntime +++ b/.local/bin/statusbar/suntime @@ -18,7 +18,7 @@ echo "$( grep Sunrise $sundata | grep -o "[0-9]*°" )" >> $sunfile echo "\n🌇 Sunset" >> $sunfile echo "$( grep Sunset $sundata | grep -o "[[:digit:]]""[[:digit:]]":"[[:digit:]]""[[:digit:]]" )" >> $sunfile -echo "$( grep Sunset $sundata | grep -o "direction.\{10\}" | sed 's/direction // ; s|">.> $sunfile +echo "$( grep Sunset $sundata | grep -o "direction.\{10\}" | sed 's/direction // ; s|">.<*||' )" >> $sunfile echo "$( grep Sunset $sundata | grep -o "[0-9]*°" )" >> $sunfile }