nix/modules/wm/hyprland/scripts/mpv.sh
2024-10-09 13:02:52 +02:00

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