Skip to content
This repository was archived by the owner on Jun 19, 2024. It is now read-only.
This repository was archived by the owner on Jun 19, 2024. It is now read-only.

perhaps some extra switches to add to chromium #16

@steverweber

Description

@steverweber

I do some kiosk stuff using chromium.
Perhaps some of these other switches might be helpful to add.

Thanks for working on this :)

chromium --no-sandbox --start-fullscreen --disable-infobars http://127.0.0.1

# 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

Metadata

Metadata

Assignees

No one assigned

    Labels

    featureFeature request / suggestion

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions