diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-03-24 17:10:30 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-03-24 17:15:49 +0100 |
commit | 96f102d6884483c090dbb97a864367d167482414 (patch) | |
tree | ce9acef33d1e5ba5770c74c75db2e8dd100cf047 /examples | |
parent | 1010831be732e295a57bf7c09a2ee7623689b447 (diff) | |
download | surf-display-96f102d6884483c090dbb97a864367d167482414.tar.gz surf-display-96f102d6884483c090dbb97a864367d167482414.tar.bz2 surf-display-96f102d6884483c090dbb97a864367d167482414.zip |
midori-display.default: Be more explanatory about the different URI_BLOCKLIST meanings.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/midori-display.default | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/examples/midori-display.default b/examples/midori-display.default index cd4c00b..49ad327 100644 --- a/examples/midori-display.default +++ b/examples/midori-display.default @@ -33,9 +33,19 @@ DEFAULT_WWW_URI="file:///usr/share/doc/midori-display/midori-display.html" # screensaver settings, see "man 1 xset" for possible options #SCREENSAVER_SETTINGS="" -# URI blocklist, URLs that Midori should block +# URI blocklist, URLs that Midori should block (default: unset) +# If URI blocklist is unset, the midori-display script will tell +# Midori to block access to all other servers except the one in +# the WWW_URI. +# (i.e. URI_BLOCKLIST='^((?!'$URI_TYPE'.*'$WWW_SERVER'/).).*$') +#unset URI_BLOCKLIST + +# Other example: block some famous data collection sites #URI_BLOCKLIST=".*(facebook|google|apple|microsoft|twitter)[^/]+/.*" +# Or allow access to all sites on the internet +#URI_BLOCKLIST="" + # disable right and middle pointer device click in Midori sessions while keeping # scrolling wheels' functionality intact... (consider "pointer" subcommand on # xmodmap man page for details). |