google-chrome/google-chrome-stable.sh

9 lines
238 B
Bash
Raw Normal View History

2015-08-26 17:36:59 +00:00
#!/bin/bash
# Allow users to override command-line options
if [[ -f ~/.config/chrome-flags.conf ]]; then
CHROME_USER_FLAGS="$(cat ~/.config/chrome-flags.conf)"
fi
# Launch
2015-09-04 18:57:18 +00:00
exec /opt/google/chrome/google-chrome $CHROME_USER_FLAGS "$@"