From 35f5b84352d99eeb5e1d2d83377440e7d5643087 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Thu, 14 Apr 2016 08:16:00 -0700 Subject: [PATCH] pass args from watchstream1 to mpv --- home/streamcrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/streamcrap b/home/streamcrap index df4bb43..ebf26a1 100644 --- a/home/streamcrap +++ b/home/streamcrap @@ -44,10 +44,10 @@ watchstream1() { _mpv_flags if [ -n "$ZSH_VERSION" ]; then # zsh syntax - mpv $=REPLY "$url" + mpv $=REPLY "$@" "$url" else # bash syntax - mpv $REPLY "$url" + mpv $REPLY "$@" "$url" fi }