morz-infoboard/ansible/roles/signage_display/templates/morz-kiosk.j2
2026-03-26 23:31:00 +01:00

27 lines
710 B
Django/Jinja
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# Morz Infoboard Kiosk startet Chromium im Vollbild
# Wird von xinit aufgerufen, DISPLAY ist bereits gesetzt.
# Bildschirmschoner und Energiesparen deaktivieren
xset s off
xset s noblank
xset +dpms
xset dpms 0 0 0 # Timeouts deaktivieren — nur Backend schaltet das Display
# Mauscursor ausblenden
unclutter -idle 1 -root &
# Minimaler Window-Manager nötig damit --kiosk echtes Vollbild bekommt
openbox --sm-disable &
exec chromium \
--noerrdialogs \
--disable-infobars \
--kiosk \
--no-first-run \
--disable-translate \
--disable-session-crashed-bubble \
--disable-features=Translate \
--check-for-update-interval=31536000 \
--lang=de \
"{{ morz_player_url }}"