blob: 8b852f47ed216ebd01175b36812dcb858510e39e (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/zsh
[[ $# -gt 0 ]] || return
(( $+commands[streamlink] )) || return
zstyle -s :function:twitch ${1:l} stream || stream=${1:l}
shift
streamlink twitch.tv/$stream "$@"
|