UNPKG

207 Bapplication/x-shView Raw
1#!/bin/bash
2
3case "$1" in
4 start)
5 sh ./display.sh stop
6 omxplayer -b --loop --no-ghost-box $2
7 ;;
8 *)
9 echo "Usage omxplayer.sh {start <urlOrPath>}"
10 exit 1
11 ;;
12esac
13
14exit 0