12 lines
205 B
Bash
Executable file
12 lines
205 B
Bash
Executable file
#!/bin/sh
|
|
|
|
link=$(wl-paste)
|
|
|
|
if [ -n "$link" ]; then
|
|
mpv "$link" &
|
|
|
|
notify-send "Opening Link" "$link" --icon=video-x-generic
|
|
else
|
|
notify-send "Error" "No URL provided." --icon=dialog-error
|
|
fi
|