diff options
Diffstat (limited to 'etc/functions')
-rw-r--r-- | etc/functions/rrad | 14 | ||||
-rw-r--r-- | etc/functions/youtube-watch | 24 |
2 files changed, 0 insertions, 38 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 diff --git a/etc/functions/youtube-watch b/etc/functions/youtube-watch deleted file mode 100644 index 18e473a..0000000 --- a/etc/functions/youtube-watch +++ /dev/null @@ -1,24 +0,0 @@ -## vim:ft=zsh -## Watch a youtube video -## requires youtube-dl and mplayer -## Usage: youtube-dl [-c] <video url> [mplayer options] -typeset video -typeset -i cache=0 - -while [[ $* == -* ]] { - case $1 in - -c) cache=1 ;; - -|--) shift; break ;; - esac - shift -} - -video=$1 -shift - -if ((cache)) { - youtube-dl -o /tmp/youtube.flv $video - mplayer $* /tmp/youtube.flv -} else { - mplayer $* $(youtube-dl -gb $video) -} |