diff options
Diffstat (limited to '.local/bin/statusbar/sb-forecast')
-rwxr-xr-x | .local/bin/statusbar/sb-forecast | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/.local/bin/statusbar/sb-forecast b/.local/bin/statusbar/sb-forecast deleted file mode 100755 index c9923fd..0000000 --- a/.local/bin/statusbar/sb-forecast +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh - -LOCATION=$(cat "$XDG_CONFIG_HOME/forecast/location") - -main () { - case "$1" in - -b|--browser) - xdg-open "https://wttr.in/$LOCATION" - exit 0 ;; - esac - - res=$(curl -sf wttr.in/"$LOCATION"?format="%x+%t") || exit 1 - - icon=$(condition_icon "$res") - temp=$(temperature "$res") - echo "$icon" "$temp" -} - -condition_icon () { - icon=$(echo "$1" | cut -d\ -f1) - - case "$icon" in - '=') echo ;; - '/') echo ;; - '.') echo ;; - 'm') echo ;; - 'o') echo ;; - 'mmm') echo ;; - 'mm') echo ;; - '///') echo ;; - '//') echo ;; - '**') echo ;; - '*') echo ;; - '*/*') echo ;; - 'x') echo ;; - 'x/') echo ;; - '*/') echo ;; - '/!/') echo ;; - '!/') echo ;; - '*!*') echo ;; - *) echo ? ;; - esac -} - -temperature () { - echo "$1" | cut -d\ -f2 | sed -e 's/+//' -e 's/-0/0/' -e 's/C//' -} - -main "$@" |