Does anyone know a way to make chrome always start in full screen? (normally it's when you press the button to the top right, you'd find a "full screen button" in the zoom option).
Not f11 full screen; it's different! try it.
Does anyone know a way to make chrome always start in full screen? (normally it's when you press the button to the top right, you'd find a "full screen button" in the zoom option).
Not f11 full screen; it's different! try it.
I think that the best option is to use the kiosk mode, even if it's not really the F11 Fullscreen mode that you expected.
Open the .desktop file of Chrome:
sudo gedit /usr/share/applications/google-chrome.desktop
You need to add the --kiosk
option in three places:
[Desktop Entry]
[...]
Exec=/usr/bin/google-chrome-stable --kiosk %U
[...]
[NewWindow Shortcut Group]
[...]
Exec=/usr/bin/google-chrome-stable --kiosk
[...]
[NewIncognito Shortcut Group]
[...]
Exec=/usr/bin/google-chrome-stable --kiosk --incognito
Hitting F11 does not work since it's not a true Fullscreen mode, press Alt+F4 to quit.