953d85619a
* Replace youtube-dl with yt-dlp in qndl * Replace youtube-dl with yt-dlp in dmenuhandler * Replace youtube-dl with yt-dlp in newsboat config * Replace youtube-dl with yt-dlp in aliasrc Co-authored-by: Luke Smith <luke@lukesmith.xyz>
12 lines
365 B
Bash
Executable file
12 lines
365 B
Bash
Executable file
#!/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="yt-dlp --embed-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."
|