mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
5b74b877ef
This reverts commit 8fe0202c2e
.
Better to do this in the RP ES launch script
20 lines
423 B
Bash
Executable file
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
|