diff options
Diffstat (limited to '.scripts/weather')
-rwxr-xr-x | .scripts/weather | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/.scripts/weather b/.scripts/weather index 345e702..a5c868a 100755 --- a/.scripts/weather +++ b/.scripts/weather @@ -12,7 +12,6 @@ usage() { show : show picture according to time get : get image from wttr.in reload : get and show - full : curl wttr.in [:help|p|q] text : print one line text clear : clear text cache example: weather f 'Kitchener_0pq' @@ -31,13 +30,8 @@ onlyprinttext() { get_image() { hasnet || exit 1 - curl -s 'wttr.in/Tübingen_1pq.png' >$CACHEFILE - curl -s 'wttr.in/Tübingen?format=%t' >$CACHE_ONELINE -} - -print_detail() { - echo curl -s "wttr.in/"$OPTION - curl -s "wttr.in"/$OPTION + (curl -f -s 'wttr.in/Tübingen_1pq.png' || echo "ERR") >$CACHEFILE + (curl -f -s 'wttr.in/Tübingen?format=%t' || echo "ERR") >$CACHE_ONELINE } show_image() { @@ -58,10 +52,6 @@ h | -h* | --h*) usage ;; show | s) show_image ;; get | g) get_image ;; reload | r) get_image && show_image ;; -full | f) - print_detail - OPTION=$2 - ;; text | t) onlyprinttext ;; *) onlyprinttext |