summaryrefslogtreecommitdiff
path: root/etc/functions/rrad
diff options
context:
space:
mode:
Diffstat (limited to 'etc/functions/rrad')
-rw-r--r--etc/functions/rrad14
1 files changed, 0 insertions, 14 deletions
diff --git a/etc/functions/rrad b/etc/functions/rrad
deleted file mode 100644
index 195ceb3..0000000
--- a/etc/functions/rrad
+++ /dev/null
@@ -1,14 +0,0 @@
-## vim:ft=zsh
-typeset url=$(printf http://www.wetteronline.de/daten/radar/dnrw/%s/std_%02d%02d.gif \
- $(date +%Y/%m/%d) $(( $(date +%H) - 2)) $(( $(date +%M) / 15 * 15 )) )
-typeset file=$(mktemp /tmp/rrad.XXXXXXX)
-
-curl -s $url > $file
-
-if [[ ${$(du -b $file)[1]} == 0 ]] {
- echo "Error"
- return 1
-}
-
-mplayer -loop 0 $file
-rm $file