diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2015-07-17 10:19:30 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2015-07-17 10:19:30 +0200 |
commit | 325d3df3ef1dde868865a266b88df7cdfb909289 (patch) | |
tree | 9e0eafe6f544a228931ea3cde76df2716724fc2b /main/chromium/chromium-launcher.sh | |
parent | 6e428c0d94cbff633df9bbb44f91a5db2f073833 (diff) | |
download | aports-325d3df3ef1dde868865a266b88df7cdfb909289.tar.bz2 aports-325d3df3ef1dde868865a266b88df7cdfb909289.tar.xz |
testing/chromium: move to main and rebuild against eudev
Diffstat (limited to 'main/chromium/chromium-launcher.sh')
-rw-r--r-- | main/chromium/chromium-launcher.sh | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/main/chromium/chromium-launcher.sh b/main/chromium/chromium-launcher.sh new file mode 100644 index 0000000000..b001d6fe59 --- /dev/null +++ b/main/chromium/chromium-launcher.sh @@ -0,0 +1,39 @@ +#!/bin/sh + +# Allow the user to override command-line flags, bug #357629. +# This is based on Debian's chromium-browser package, and is intended +# to be consistent with Debian. +for f in /etc/chromium/*.conf; do + [ -f ${f} ] && . "${f}" +done + +# Prefer user defined CHROMIUM_USER_FLAGS (from env) over system +# default CHROMIUM_FLAGS (from /etc/chromium/default). +CHROMIUM_FLAGS=${CHROMIUM_USER_FLAGS:-"$CHROMIUM_FLAGS"} + +# Let the wrapped binary know that it has been run through the wrapper +export CHROME_WRAPPER=$(readlink -f "$0") + +PROGDIR=${CHROME_WRAPPER%/*} + +case ":$PATH:" in + *:$PROGDIR:*) + # $PATH already contains $PROGDIR + ;; + *) + # Append $PROGDIR to $PATH + export PATH="$PATH:$PROGDIR" + ;; +esac + +if [ $(id -u) -eq 0 ] && [ $(stat -c %u -L ${XDG_CONFIG_HOME:-${HOME}}) -eq 0 ]; then + # Running as root with HOME owned by root. + # Pass --user-data-dir to work around upstream failsafe. + CHROMIUM_FLAGS="--user-data-dir=${XDG_CONFIG_HOME:-${HOME}/.config}/chromium + ${CHROMIUM_FLAGS}" +fi + +# Set the .desktop file name +export CHROME_DESKTOP="chromium.desktop" + +exec "$PROGDIR/chrome" --extra-plugin-dir=/usr/lib/nsbrowser/plugins ${CHROMIUM_FLAGS} "$@" |