Skip to content

Instantly share code, notes, and snippets.

@junkycoder
Last active April 25, 2016 12:00
Show Gist options
  • Save junkycoder/c82d69b1889c97dfd353494352933b63 to your computer and use it in GitHub Desktop.
Save junkycoder/c82d69b1889c97dfd353494352933b63 to your computer and use it in GitHub Desktop.
Raspberry Pi - full screen browser
# ...
# Run the browser
if [ $(tty) == /dev/tty1 ]; then
xinit ./run_browser.sh
fi
#!/bin/sh
matchbox-window-manager -use_cursor no&
chromium-browser http://localhost/ --kiosk --incognito --start-maximized --disable-restore-background-contents --disable-translate --disable-new-tab-first-run --enable-vertical-tabs --touch-devices=6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment