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

12 lines
324 B
Bash
Raw Normal View History

#!/bin/bash
XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-~/.config}
# Allow users to override command-line options
if [[ -f $XDG_CONFIG_HOME/chrome-dev-flags.conf ]]; then
CHROME_USER_FLAGS="$(cat $XDG_CONFIG_HOME/chrome-dev-flags.conf)"
fi
# Launch
exec /opt/google/chrome-unstable/google-chrome-unstable $CHROME_USER_FLAGS "$@"