4 lines
118 B
Bash
Executable file
4 lines
118 B
Bash
Executable file
#!/bin/sh
|
|
|
|
link=$(echo "$(xclip -selection clipboard -o)" | dmenu -i -p "Link: ")
|
|
[ -z $link ] && exit 1 || mpv $link
|