5 lines
109 B
Bash
Executable file
5 lines
109 B
Bash
Executable file
#!/bin/bash
|
|
|
|
url=$(wl-paste)
|
|
notify-send "fetching video: ${url}"
|
|
mpv --really-quiet $url > /dev/null 2>&1 &
|