diff options
Diffstat (limited to 'etc/functions/youtube-watch')
-rw-r--r-- | etc/functions/youtube-watch | 24 |
1 files changed, 0 insertions, 24 deletions
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) -} |