mirror of
https://github.com/luzifer-aur/google-chrome-beta.git
synced 2024-11-09 22:20:01 +00:00
9 lines
No EOL
258 B
Bash
9 lines
No EOL
258 B
Bash
#!/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
|
|
exec /opt/google/chrome-beta/google-chrome-beta $CHROME_USER_FLAGS "$@" |