qndl separate script
This commit is contained in:
parent
cb2fab9067
commit
126264ea90
2 changed files with 12 additions and 6 deletions
11
.scripts/tools/qndl
Executable file
11
.scripts/tools/qndl
Executable file
|
@ -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."
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue