diff options
author | Marvin Borner | 2022-11-01 14:13:08 +0100 |
---|---|---|
committer | Marvin Borner | 2022-11-01 14:13:08 +0100 |
commit | 29c894db157e9b2bb2a392e0abb83ac700a839d5 (patch) | |
tree | 1e630bfabf1d94b61a88ab7b6e8b631113b6f7fd /.scripts/weather | |
parent | 600de714ba13c1ccd54357554898db909de5af81 (diff) |
sync
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 |