UNPKG

201 Bapplication/x-shView Raw
1#!/bin/bash
2
3case "$1" in
4 start)
5 sh ./display.sh stop
6 livestreamer $2 best -np omxplayer
7 ;;
8 *)
9 echo "Usage livestreamer.sh {start <url>}"
10 exit 1
11 ;;
12esac
13
14exit 0