1

Where can I store default command line arguments to chromium?

Like if I want to set the password-store, incognito, or the proxy options?

Evan Carroll
  • 7,526

1 Answers1

1

You can store those arguments in /etc/chromium-browser/default

sudo -e /etc/chromium-browser/default

Then set it appropriately

CHROMIUM_FLAGS="--incognito --password-store=gnome"
Evan Carroll
  • 7,526