Skip to content

Instantly share code, notes, and snippets.

@mihs
Created May 6, 2014 10:20
Show Gist options
  • Select an option

  • Save mihs/6c9780718ed47fb128ba to your computer and use it in GitHub Desktop.

Select an option

Save mihs/6c9780718ed47fb128ba to your computer and use it in GitHub Desktop.
Run Chromium with a separate profile for Gmail
#!/bin/sh
if [ ! -d $HOME/.config/chromium/gmail ]; then
mkdir -p $HOME/.config/chromium/gmail
fi
chromium-browser --user-data-dir=$HOME/.config/chromium/gmail gmail.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment