eusi / TwitchStreamer-Alfred-Workflow

Check who is Streaming on twitch.tv and watch your favorite Stream via LiveStreamer on VLC.
20 stars 6 forks source link

Add support for mpv playback #4

Closed jedahan closed 9 years ago

jedahan commented 9 years ago

I changed the terminal command to:

if [ `which livestreamer` ]; then
  nohup livestreamer {query} high &
elif [ `which mpv` ]; then
  nohup mpv {query} &
fi

So that way if you use mpv instead of livestreamer, it still works :)

eusi commented 9 years ago

This is helpful, thank you for reporting :+1:
I will merge it at the weekend.