summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2019-01-20 17:39:03 -0500
committerLuke Smith <luke@lukesmith.xyz>2019-01-20 17:39:03 -0500
commit126264ea908bcb65162606df1f08b62af70659bc (patch)
treeb563d7a8a9fddad81f9323e08a1cc4e3f413e801
parentcb2fab9067b39e65cc9b1cc086886724355b8b38 (diff)
downloadeibhear-126264ea908bcb65162606df1f08b62af70659bc.tar.gz
eibhear-126264ea908bcb65162606df1f08b62af70659bc.tar.zst
eibhear-126264ea908bcb65162606df1f08b62af70659bc.zip
qndl separate script
-rwxr-xr-x.scripts/tools/qndl11
-rwxr-xr-x.scripts/tools/queueandnotify7
2 files changed, 12 insertions, 6 deletions
diff --git a/.scripts/tools/qndl b/.scripts/tools/qndl
new file mode 100755
index 0000000..ffe3647
--- /dev/null
+++ b/.scripts/tools/qndl
@@ -0,0 +1,11 @@
+#!/bin/sh
+# $1 is a url; $2 is a command
+[ -z "$1" ] && exit
+base="$(basename "$1")"
+notify-send -i "$PIX/dl.svg" "Queuing $base..."
+cmd="$2"
+[ -z "$cmd" ] && cmd="youtube-dl --add-metadata"
+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 -i "$PIX/check.svg" "$realname done."
diff --git a/.scripts/tools/queueandnotify b/.scripts/tools/queueandnotify
index 332668f..a1417ec 100755
--- a/.scripts/tools/queueandnotify
+++ b/.scripts/tools/queueandnotify
@@ -7,12 +7,7 @@ queuefile="$HOME/.local/share/newsboat/queue"
while read -r line; do
[ -z "$line" ] && continue
url="$(echo "$line" | awk '{print $1}')"
- base="$(basename "$url")"
- notify-send -i "$PIX/dl.png" "Queuing $base..."
- idnum="$(tsp curl -LO "$url")"
- realname="$(echo "$base" | sed "s/?\(source\|dest\).*//;s/%20/ /g")"
- tsp -D "$idnum" mv "$base" "$realname"
- tsp -D "$idnum" notify-send -i "$PIX/check.png" "$realname done."
+ qndl "$url" "curl -LO"
done < "$queuefile"
echo > "$queuefile"