I am trying to create a mirror image of Chrome-OS on an Ubuntu installation starting with shortcuts. On Chrome-OS, Ctrl + Shift + N will bring up an incognito mode of Chrome. The problem implementing this shortcut is that I don't know if there is a command to open an incognito mode of Chrome. Could someone please help?
2 Answers
For Chromium
chromium-browser --incognito For Google-chrome
google-chrome --incognito Note: get used to see man for cli options, in this case man chromium-browser or man google-chrome
For Brave browser
brave-browser --incognito For Firefox
firefox -private-window For Google chrome
google-chrome --incognito For chromium
chromium-browser --incognito 2