google-chrome-beta/google-chrome-beta.sh

9 lines
258 B
Bash
Raw Normal View History

#!/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
2015-09-04 18:57:22 +00:00
exec /opt/google/chrome-beta/google-chrome-beta $CHROME_USER_FLAGS "$@"