Split the chromium switches on different lines.

This commit is contained in:
Jarno Rantanen 2020-03-10 18:15:41 +02:00
parent e6ae2ca1cb
commit e2692db855

View File

@ -31,7 +31,11 @@ find .config/chromium/ -name "Last *" | xargs rm
# Start and detach Chromium # Start and detach Chromium
# http://peter.sh/experiments/chromium-command-line-switches/ # http://peter.sh/experiments/chromium-command-line-switches/
# Note that under matchbox, starting in full-screen without a window size doesn't behave well when you try to exit full screen (see https://unix.stackexchange.com/q/273989) # Note that under matchbox, starting in full-screen without a window size doesn't behave well when you try to exit full screen (see https://unix.stackexchange.com/q/273989)
chromium-browser --start-fullscreen --window-size=1920,1080 --disable-infobars & chromium-browser \
--start-fullscreen \
--window-size=1920,1080 \
--disable-infobars \
&
# Hide Chromium while it's starting/loading the page # Hide Chromium while it's starting/loading the page
wid=`xdotool search --sync --onlyvisible --class chromium` wid=`xdotool search --sync --onlyvisible --class chromium`