summarylogtreecommitdiffstats
path: root/google-chrome-beta.sh
blob: 61650c58826e6d499a113fd3287fc7cebd140b8c (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

# Allow users to override command-line options
if [[ -f ~/.config/chrome-beta-flags.conf ]]; then
   CHROME_USER_FLAGS="$(cat ~/.config/chrome-beta-flags.conf)"
fi

# Launch
exec /opt/google/chrome-beta/google-chrome-beta $CHROME_USER_FLAGS "$@"