mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 22:25:38 +00:00
fe86459f99
/tmp/es-restart /tmp/es-sysrestart /tmp/es-shutdown to decide what we want to do. there is an emulationstation.sh launch script to handle this
19 lines
394 B
Bash
Executable file
19 lines
394 B
Bash
Executable file
#!/bin/sh
|
|
|
|
while true; do
|
|
rm -f /tmp/es-restart /tmp/es-sysrestart /tmp/es-shutdown
|
|
./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
|