#! /bin/sh

bin=/usr/local/sbin/1280patch-845g-855gm-865g

set -e

case "$1" in
  start)
	if [ -x $bin ];then
		$bin 52 1280 768
	fi
	;;
  stop|reload|restart|force-reload)
	;;
  *)
	echo "Usage: $0 {start|stop|restart|force-reload}" >&2
	exit 1
	;;
esac

exit 0

