Skip to content

Instantly share code, notes, and snippets.

@mmansion
Created August 12, 2021 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmansion/f90ebfe3c449abc27841c82b749137bd to your computer and use it in GitHub Desktop.
Save mmansion/f90ebfe3c449abc27841c82b749137bd to your computer and use it in GitHub Desktop.
Target dual 4k monitors with multiple chromium instances, running in kiosk mode on Raspberry Pi v4
DISPLAY=:0 /usr/bin/chromium-browser \
--user-data-dir=/tmp/browser-2 \
--new-window \
--window-position=3840,0 \
--disk-cache-dir=/dev/null \
--incognito \
--disable-infobars \
--noerrdialogs \
--kiosk \
http://localhost:8012/screen-2 &
DISPLAY=:0 /usr/bin/chromium-browser \
--user-data-dir=/tmp/browser-1 \
--new-window \
--disk-cache-dir=/dev/null \
--incognito \
--window-position=0,0 \
--disable-infobars \
--noerrdialogs \
--kiosk \
http://localhost:8012/screen-1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment