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