## Value to send in the `Accept-Language` header. Note that the value
## read from JavaScript is always the global value.
## Type: String
-c.content.headers.accept_language = 'en-US,en,de,fr'
+c.content.headers.accept_language = 'en-UK;q=1.0, en;q=0.9, de;q=0.7, fr;q=0.7, *;q=0.5'
## Custom headers for qutebrowser HTTP requests.
## Type: Dict
## - false
## - ask
# c.content.register_protocol_handler = 'ask'
+with config.pattern('*://mail.google.com/*') as p:
+ p.content.register_protocol_handler = False
+with config.pattern('*://calendar.google.com/*') as p:
+ p.content.register_protocol_handler = False
## Enable quirks (such as faked user agent headers) needed to get
## specific sites to work properly.
## - always: Always show the scrollbar.
## - never: Never show the scrollbar.
## - when-searching: Show the scrollbar when searching for text in the webpage. With the QtWebKit backend, this is equal to `never`.
-c.scrolling.bar = 'never'
+c.scrolling.bar = 'when-searching'
## Enable smooth scrolling for web pages. Note smooth scrolling does not
## work with the `:scroll-px` command.