{{tag>Brouillon Web GUI}}
= Lancer Chromium en mode kiosque
source : https://www.sylvaindurand.fr/launch-chromium-in-kiosk-mode/
sudo apt-get install xserver-xorg-video-all xserver-xorg-input-all xserver-xorg-core xinit x11-xserver-utils
''~/.bash_profile''
if (-z $DISPLAY) && ($(tty) = /dev/tty1)
then
startx
fi
sudo apt-get install chromium-browser
sudo apt-get install unclutter
''~/.xinitrc''
#!/bin/sh
xset -dpms
xset s off
xset s noblank
unclutter &
chromium-browser /path/to/your/file.html --window-size=1920,1080 --start-fullscreen --kiosk --incognito --noerrdialogs --disable-translate --no-first-run --fast --fast-start --disable-infobars --disable-features=TranslateUI --disk-cache-dir=/dev/null