summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdownload-and-play6
1 files changed, 6 insertions, 0 deletions
diff --git a/download-and-play b/download-and-play
new file mode 100755
index 0000000..51c152d
--- /dev/null
+++ b/download-and-play
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+yt-dlp $1 -o $2
+mpv $2
+
+exit 0