diff options
Diffstat (limited to '.local/bin/status/sb-forecast')
-rwxr-xr-x | .local/bin/status/sb-forecast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/status/sb-forecast b/.local/bin/status/sb-forecast index 2baf81d..e3c8f0d 100755 --- a/.local/bin/status/sb-forecast +++ b/.local/bin/status/sb-forecast @@ -8,7 +8,7 @@ weatherreport=$(curl -sf "wttr.in/Lyon" 2>&1 || exit 1) # >$weatherreport || (rm weatherglyph=$(curl -sf "wttr.in/Lyon?format=%c" 2>&1 || exit 1) # >$weatherglyph || exit 1 moonglyph=$(curl -sf "wttr.in/?format=%m" 2>&1 || exit 1) # >$moonglyph || exit 1 -printf "%s%s" \ +printf "^c#83a598^%s%s" \ "$(echo "$weatherglyph")" \ "$(echo "$weatherreport" | sed '16q;d' | grep -wo "[0-9]*%" | sort -rn | sed "s/^/ /g;1q" | tr -d '\n')" |