solbuilds/chrome/files/google-chrome-stable.sh
2018-01-30 09:40:39 +01:00

9 lines
238 B
Bash

#!/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 "$@"