• Reorganized the scripts into different categories
• Refactored the graphical boot screens to have separate boot and shutdown images • Changed the reboot and shutdown code to force the display of the splash images. • Added 'Team Onefinity.ngc' to the installer files
This commit is contained in:
23
installer/config/xinitrc
Normal file
23
installer/config/xinitrc
Normal file
@@ -0,0 +1,23 @@
|
||||
ratpoison &
|
||||
|
||||
xset -dpms
|
||||
xset s off
|
||||
xset s noblank
|
||||
|
||||
while true; do
|
||||
tvservice -s 2>&1 | grep "state 0x40001" >/dev/null
|
||||
if [ $? -ne 0 ]; then
|
||||
# Clear browser errors
|
||||
PREFS='/home/pi/.config/chromium/Default/Preferences'
|
||||
sed -i 's/"exited_cleanly":false/"exited_cleanly":true/' $PREFS
|
||||
sed -i 's/"exit_type":"Crashed"/"exit_type":"Normal"/' $PREFS
|
||||
|
||||
xrdb /home/pi/.Xresources
|
||||
|
||||
# Start browser
|
||||
/usr/local/bin/browser --no-first-run --disable-infobars \
|
||||
--noerrdialogs --disable-3d-apis http://localhost/
|
||||
fi
|
||||
|
||||
sleep 1
|
||||
done
|
||||
Reference in New Issue
Block a user