Facebook
From Burly Bat, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 50
  1. # Disable any form of screen saver / screen blanking / power management
  2. xset s off
  3. xset s noblank
  4. xset -dpms
  5.  
  6. # Allow quitting the X server with CTRL-ATL-Backspace
  7. setxkbmap -option terminate:ctrl_alt_bksp
  8.  
  9. # Start Chromium in kiosk mode
  10. sed -i 's/"exited_cleanly":false/"exited_cleanly":true/' ~/.config/chromium/'Local State'
  11. sed -i 's/"exited_cleanly":false/"exited_cleanly":true/; s/"exit_type":"[^"]\+"/"exit_type":"Normal"/' ~/.config/chromium/Default/Preferences
  12. chromium-browser --disable-infobars --kiosk 'http://your-url-here'