5 lines
112 B
Bash
Executable file
5 lines
112 B
Bash
Executable file
#!/bin/bash
|
|
url=$(xclip -o -selection clipboard)
|
|
if [ -n "$url" ]; then
|
|
cd $HOME/Videos && yt-dlp "$url"
|
|
fi
|