#!/bin/sh # Managed by ansible (pi_kiosk role). No window manager on purpose - Firefox is the # only X client, launched full-screen in kiosk mode; the loop is what takes the place # of a WM's "keep something on screen" job if it crashes. xset s off xset -dpms xset s noblank unclutter -idle 0.5 -root & while true; do firefox --kiosk "{{ pi_kiosk_url }}" sleep 2 done