summary refs log tree commit diff
path: root/home
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-02-09 19:56:51 -0500
committerJune McEnroe <june@causal.agency>2021-02-09 19:56:51 -0500
commitcd439e545f40e8e33a47851606ae24cec7957ed5 (patch)
treede1d90c401cb964e5a7db9bc0e962742c8381365 /home
parentAdd volume control bindings to cwm (diff)
downloadsrc-cd439e545f40e8e33a47851606ae24cec7957ed5.tar.gz
src-cd439e545f40e8e33a47851606ae24cec7957ed5.zip
Open youtube and twitch with mpv
Diffstat (limited to 'home')
-rwxr-xr-xhome/.local/bin/open3
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"
 		;;