17 lines
		
	
	
	
		
			251 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			251 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
DIR=$(mktemp -d)
 | 
						|
 | 
						|
cd "$DIR"
 | 
						|
 | 
						|
yt-dlp --merge-output-format mp4 "$(wl-paste)"
 | 
						|
 | 
						|
FILENAME="$(ls)"
 | 
						|
 | 
						|
cp * "$HOME/Downloads/Memes/$FILENAME"
 | 
						|
 | 
						|
wl-copy-file "$HOME/Downloads/Memes/$FILENAME"
 | 
						|
 | 
						|
notify-send "Meme downloaded" "$FILENAME"
 | 
						|
 | 
						|
rm -rf "$DIR"
 |