You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
621 B
Plaintext
17 lines
621 B
Plaintext
# A set of command line flags that we want to set by default.
|
|
|
|
# Do not hide any extensions in the about:extensions dialog
|
|
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --show-component-extension-options"
|
|
|
|
# Don't use the GPU blacklist (bug #802933)
|
|
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --ignore-gpu-blacklist"
|
|
|
|
# Don't display any warnings about not being the default browser
|
|
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --no-default-browser-check"
|
|
|
|
# Disable pinging
|
|
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --disable-pings"
|
|
|
|
# Disable the builtin media router (bug #833477)
|
|
export CHROMIUM_FLAGS="$CHROMIUM_FLAGS --media-router=0"
|