mirror of
https://github.com/luzifer-aur/google-chrome.git
synced 2025-01-06 14:46:04 +00:00
9 lines
236 B
Text
9 lines
236 B
Text
|
#!/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 $@
|