summarylogtreecommitdiffstats
path: root/google-chrome-stable
diff options
context:
space:
mode:
Diffstat (limited to 'google-chrome-stable')
-rw-r--r--google-chrome-stable9
1 files changed, 9 insertions, 0 deletions
diff --git a/google-chrome-stable b/google-chrome-stable
new file mode 100644
index 000000000000..b3b1e7729d0e
--- /dev/null
+++ b/google-chrome-stable
@@ -0,0 +1,9 @@
+#!/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 $@ \ No newline at end of file