mirror of
https://github.com/zedsalim/debian-z.git
synced 2025-12-06 03:19:28 +00:00
12 lines
230 B
Bash
Executable file
12 lines
230 B
Bash
Executable file
#!/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
|
|
|