ES-DE/emulationstation.sh
Jools Wills 5b74b877ef Revert "restore cursor on exit"
This reverts commit 8fe0202c2e.

Better to do this in the RP ES launch script
2016-09-12 19:11:25 +01:00

20 lines
423 B
Bash
Executable file

#!/bin/sh
esdir="$(dirname $0)"
while true; do
rm -f /tmp/es-restart /tmp/es-sysrestart /tmp/es-shutdown
"$esdir/emulationstation" "$@"
[ -f /tmp/es-restart ] && continue
if [ -f /tmp/es-sysrestart ]; then
rm -f /tmp/es-sysrestart
sudo reboot
break
fi
if [ -f /tmp/es-shutdown ]; then
rm -f /tmp/es-shutdown
sudo poweroff
break
fi
break
done