I need to do a script that execute about 9 chromium browsers in kiosk mode with 9 different graphics to be monitored.
I'm trying to execute the following command line (Ubuntu 16.04 LTS):
chromium-browser --app={link} --window-size=x,y --window-position=x,y --kiosk
When it is executed without --kiosk
parameter the window-size
and window-position
works fine, but when I try to execute with --kiosk
it runs in full screen.
I tried to change the position of --kiosk
and the window parameters but it not worked too. I also tryed to change in ".../chromium/Default/Preferences" the window_placement
and app_window_placement
maximized property to false
instead true
[Default].
My question is, is there some way to run chromium in --kiosk
mode with my options of window size and position?
Thank you for your help.