mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-11-03 22:11:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			362 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			362 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="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 "👍 $realname done."
 |