debian-z/config/scripts/mpv-youtube.sh

13 lines
230 B
Bash
Raw Normal View History

2023-06-21 21:49:34 +01:00
#!/bin/bash
play_clipboard_url() {
# Capture the URL from the clipboard
url=$(xclip -o -selection clipboard)
# Run mpv with the URL
mpv --ytdl-raw-options=format="best[height<=720]" "$url"
}
play_clipboard_url