google-chrome-stable.sh 238 B

123456789
  1. #!/bin/bash
  2. # Allow users to override command-line options
  3. if [[ -f ~/.config/chrome-flags.conf ]]; then
  4. CHROME_USER_FLAGS="$(cat ~/.config/chrome-flags.conf)"
  5. fi
  6. # Launch
  7. exec /opt/google/chrome/google-chrome $CHROME_USER_FLAGS "$@"