#!/bin/sh xset -dpms # disable DPMS (Energy Star) features. xset s off # disable screen saver xset s noblank # don't blank the video device GEO="$(fbset -s | awk '$1 == "geometry" { print $2":"$3 }')" WIDTH=$(echo "$GEO" | cut -d: -f1) HEIGHT=$(echo "$GEO" | cut -d: -f2) unclutter & # hide X mouse cursor unless mouse activated chromium-browser --display=:0 --ash-host-window-bounds=$WIDTH,$HEIGHT --window-size=$WIDTH,$HEIGHT --window-position=0,0 --ignore-certificate-errors --disable-infobars --noerrdialogs --test-type --kiosk --start-maximized https://www.makeitsimple.be