You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 19, 2024. It is now read-only.
# fresh file space to ensure no unsafe shutdown warning if browser crashed...
rm -rf /tmp/kiosk || true ; mkdir /tmp/kiosk || true
# --test-type # removes warnings about security
# --no-sandbox # needed when running as root
# --disable-web-security # allow local files and CORS
# --check-for-update-interval=10 # 10 seconds show update box fast for testing..(default is like ~7h)
# --simulate-critical-update # shows update as an icon hidden from user when in fullscreen
chromium-browser --test-type --no-sandbox --disable-web-security --user-data-dir=/tmp/kiosk \
--window-position=0,0 --start-fullscreen \
--check-for-update-interval=3628800 --simulate-critical-update \
--disable-session-crashed-bubble --disable-restore-session-state \
--noerrdialogs --disable-infobars \
--enable-fast-unload --enable-tcp-fast-open --dns-prefetch-disable \
--enable-logging=stderr \
--kiosk http://127.0.0.1/index.html
I do some kiosk stuff using chromium.
Perhaps some of these other switches might be helpful to add.
Thanks for working on this :)
archinstall_gui/INSTALL/xinitrc
Line 37 in bc93693