blob: 612904547a94e233b88c7b30d300b6f511531a03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env sh
xset s off # don't activate screensaver
xset -dpms # disable DPMS (Energy Star) features.
xset s noblank # don't blank the video device
#LOG="/var/log/retroarch/retroarch.log"
#touch "$LOG"
#mv "$LOG" "$LOG.old"
[ -f '/etc/retroarch-session/pre-launch' ] && . '/etc/retroarch-session/pre-launch'
retroarch #&> "$LOG"
#shutdown now
[ -f '/etc/retroarch-session/post-launch' ] && . '/etc/retroarch-session/post-launch'
|