Outils pour utilisateurs

Outils du site


tech:lancer_chromium_en_mode_kiosque

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
tech/lancer_chromium_en_mode_kiosque.txt · Dernière modification : de Jean-Baptiste

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki