google-chrome-dev/google-chrome-unstable.sh

9 lines
264 B
Bash
Raw Normal View History

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