6 lines
196 B
Bash
Executable file
6 lines
196 B
Bash
Executable file
#!/bin/sh
|
|
|
|
link="https://twitch.tv/$(echo "" | dmenu -p "Channel/Video: ")"
|
|
[ -z $link ] && exit 1
|
|
|
|
mpv $link && echo "Successfully load" || notify-send "Channel/video name is invalid or offline"
|