Created
June 1, 2018 05:17
-
-
Save r3b311i0n/ba826a5380d8c23038c3ad5fa8d85ab9 to your computer and use it in GitHub Desktop.
For custom flag support (from AUR).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment