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