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 --incognitoFor Google-chrome
google-chrome --incognitoNote: get used to see man for cli options, in this case man chromium-browser or man google-chrome
For Brave browser
brave-browser --incognitoFor Firefox
firefox -private-windowFor Google chrome
google-chrome --incognitoFor chromium
chromium-browser --incognito 2