blob: e662db176f0fe291e3799c39bf3a529073e2670f (
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
61
62
63
64
|
#!/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
full : curl wttr.in [:help|p|q]
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 -s 'wttr.in/Tübingen_1pq.png' > $CACHEFILE
curl -s 'wttr.in/?format=%t' > $CACHE_ONELINE
}
print_detail() {
echo curl -s "wttr.in/"$OPTION
curl -s "wttr.in"/$OPTION
}
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 ;;
full|f) print_detail; OPTION=$2;;
text|t) onlyprinttext;;
*) onlyprinttext; usage;;
esac
|