6 lines
125 B
Bash
Executable File
6 lines
125 B
Bash
Executable File
#!/bin/sh
|
|
|
|
url=$(wl-paste)
|
|
notify-send "Playing: $url"
|
|
mpv --log-file=/tmp/mpv_output.txt "$url" || notify-send "mpv failed"
|