]> git.pld-linux.org Git - packages/chromium-browser.git/blame - chromium-browser.sh
describe plugin search order in patch
[packages/chromium-browser.git] / chromium-browser.sh
CommitLineData
bd7a3039
ER
1#!/bin/sh
2
37ceaf05
ER
3# Allow the user to override command-line flags, http://bugs.gentoo.org/357629
4# This is based on Debian's chromium-browser package, and is intended
5# to be consistent with Debian.
6if [ -f /etc/chromium-browser/default ] ; then
7 . /etc/chromium-browser/default
8fi
4edced9c
ER
9
10# Always use our ffmpeg libs.
bc4d0afe
ER
11CHROMIUM_DIR=@libdir@
12export LD_LIBRARY_PATH=$CHROMIUM_DIR${LD_LIBRARY_PATH:+:"$LD_LIBRARY_PATH"}
4edced9c
ER
13
14# for to find xdg-settings
15export PATH=@libdir@${PATH:+:"$PATH"}
16
17# chromium needs /dev/shm being mounted
18m=$(awk '$2 == "/dev/shm" && $3 == "tmpfs" {print}' /proc/mounts)
19if [ -z "$m" ]; then
20 cat >&2 <<-'EOF'
21 Chromium needs /dev/shm being mounted for Shared Memory access.
22
23 To do so, invoke (as root):
24 mount -t tmpfs -o rw,nosuid,nodev,noexec none /dev/shm
25
26 EOF
bd7a3039 27fi
4edced9c
ER
28
29# Set CHROME_VERSION_EXTRA visible in the About dialog and in about:version
30export CHROME_VERSION_EXTRA="PLD Linux"
31
a153aaeb
AM
32# Let the wrapped binary know that it has been run through the wrapper
33export CHROME_WRAPPER="$(readlink -f "$0")"
34
aa6a00d6
ER
35# Google Chrome has a number of command line switches which change the behavior of Chrome
36# This param allows you to set extra args for browser startup.
1693275a 37# See: http://peter.sh/experiments/chromium-command-line-switches/
aa6a00d6
ER
38CHROME_FLAGS_FILE="${XDG_CONFIG_HOME:-$HOME/.config}/chromium/Chrome Flags"
39if [ -f "$CHROME_FLAGS_FILE" ]; then
40 # All lines starting with # are ignored
37ceaf05 41 CHROMIUM_USER_FLAGS=$(grep -v '^#' "$CHROME_FLAGS_FILE")
aa6a00d6
ER
42fi
43
37ceaf05
ER
44# Prefer user defined CHROMIUM_USER_FLAGS (from env) over system
45# default CHROMIUM_FLAGS (from /etc/chromium-browser/default).
46CHROMIUM_FLAGS=${CHROMIUM_USER_FLAGS:-"$CHROMIUM_FLAGS"}
47
1693275a 48# Google guys cannot properly handle comma, so download speed/est is shown
6a2c5f4d 49# as not a number (NaN). Workaround that with LC_NUMERIC=C
1693275a 50export LC_NUMERIC=C
6a2c5f4d 51
bc4d0afe 52# load PepperFlash if present
8fc86c7a
ER
53PEPFLASH=$(readlink -f $CHROMIUM_DIR/../browser-plugins/PepperFlash)
54if [ -f $PEPFLASH/manifest.ver ]; then
55 . $PEPFLASH/manifest.ver
56 PEPPERFLASH_ARGS="--ppapi-flash-path=$PEPFLASH/libpepflashplayer.so --ppapi-flash-version=$version"
bc4d0afe
ER
57fi
58
59exec $CHROMIUM_DIR/chromium-browser $PEPPERFLASH_ARGS $CHROMIUM_FLAGS "$@"
This page took 0.029055 seconds and 4 git commands to generate.