mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
13 lines
365 B
Bash
Executable File
13 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."
|