Initial commit
This commit is contained in:
commit
305cf9b127
12 changed files with 1215 additions and 0 deletions
11
google-chrome-stable.sh
Normal file
11
google-chrome-stable.sh
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-~/.config}
|
||||
|
||||
# Allow users to override command-line options
|
||||
if [[ -f $XDG_CONFIG_HOME/chrome-flags.conf ]]; then
|
||||
CHROME_USER_FLAGS="$(grep -v '^#' $XDG_CONFIG_HOME/chrome-flags.conf)"
|
||||
fi
|
||||
|
||||
# Launch
|
||||
exec /opt/google/chrome/google-chrome $CHROME_USER_FLAGS "$@"
|
||||
Loading…
Add table
Add a link
Reference in a new issue