google-chrome/google-chrome-stable.sh
2018-09-12 13:01:02 +03:00

9 lines
No EOL
238 B
Bash
Executable file

#!/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
exec /opt/google/chrome/google-chrome $CHROME_USER_FLAGS "$@"