5 lines
157 B
Bash
Executable file
5 lines
157 B
Bash
Executable file
#!/bin/sh
|
|
# Play from clipboard on mpv
|
|
|
|
notify-send "mpv" "Attempting to play from URL..."
|
|
mpv "$(xsel -ob)" || notify-send "mpv" "Error: Couldn't open URL"
|