blob: a5c868a6dd72d386dcbbcfc60ed3744ddfed5ae0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#!/bin/bash
WEATHER_CACHE_DIR="/home/melvin/.cache/weather"
CACHEFILE=$WEATHER_CACHE_DIR"/current_weather.png"
CACHE_ONELINE=$WEATHER_CACHE_DIR"/current_weather_oneline.txt"
TIME=""
OPTION=$2
usage() {
echo "Usage: $0 (help|update|show|get|reload|full|dark|text) [:help|p|q]"
echo " help : show this page
show : show picture according to time
get : get image from wttr.in
reload : get and show
text : print one line text
clear : clear text cache
example: weather f 'Kitchener_0pq'
weather f moon
" >&2
exit 0
}
onlyprinttext() {
info=$(cat $CACHE_ONELINE)
case $info in
*DOCTYPE*) echo " n/a" ;;
*) echo $info ;;
esac
}
get_image() {
hasnet || exit 1
(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() {
if [ ! -e $CACHEFILE ]; then
get_image
fi
n30f -t weather $CACHEFILE
}
# main
if [ ! -d $WEATHER_CACHE_DIR ]; then
mkdir $WEATHER_CACHE_DIR
get_image
fi
case "$1" in
h | -h* | --h*) usage ;;
show | s) show_image ;;
get | g) get_image ;;
reload | r) get_image && show_image ;;
text | t) onlyprinttext ;;
*)
onlyprinttext
usage
;;
esac
|