summaryrefslogtreecommitdiff
path: root/.local/bin/qndl
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/qndl')
-rwxr-xr-x.local/bin/qndl12
1 files changed, 12 insertions, 0 deletions
diff --git a/.local/bin/qndl b/.local/bin/qndl
new file mode 100755
index 0000000..f6fbe87
--- /dev/null
+++ b/.local/bin/qndl
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+# $1 is a url; $2 is a command
+[ -z "$1" ] && exit
+base="$(basename "$1")"
+notify-send "⏳ Queuing $base..."
+cmd="$2"
+[ -z "$cmd" ] && cmd="youtube-dl --add-metadata -ic"
+idnum="$(tsp $cmd "$1")"
+realname="$(echo "$base" | sed "s/?\(source\|dest\).*//;s/%20/ /g")"
+tsp -D "$idnum" mv "$base" "$realname"
+tsp -D "$idnum" notify-send "👍 $realname done."