diff options
author | June McEnroe <june@causal.agency> | 2021-02-09 19:56:51 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-02-09 19:56:51 -0500 |
commit | a9163f8ca3f589e3a3eaaeee339df4c55c6907ff (patch) | |
tree | 315faa41d64bc4cd7d6d41af369856480466b73c /home/.local/bin | |
parent | Add volume control bindings to cwm (diff) | |
download | src-a9163f8ca3f589e3a3eaaeee339df4c55c6907ff.tar.gz src-a9163f8ca3f589e3a3eaaeee339df4c55c6907ff.zip |
Open youtube and twitch with mpv
Diffstat (limited to 'home/.local/bin')
-rwxr-xr-x | home/.local/bin/open | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/home/.local/bin/open b/home/.local/bin/open index a1f57a1a..17cfb523 100755 --- a/home/.local/bin/open +++ b/home/.local/bin/open @@ -9,6 +9,9 @@ case "$1" in (*.gif|*.jpeg|*.jpg|*.png) curl -LSs "$1" | imv - ;; + (https://youtu.be/*|https://www.youtube.com/watch*|https://twitch.tv/*) + exec mpv "$1" >/dev/null 2>/dev/null + ;; (*) exec xterm -e w3m "$1" ;; |