Initial commit

This commit is contained in:
Christian Schendel 2025-09-04 21:52:54 +02:00
commit 305cf9b127
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
12 changed files with 1215 additions and 0 deletions

11
google-chrome-stable.sh Normal file
View 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 "$@"