Created
August 12, 2021 15:55
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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