# Any {} in the string will be expanded to the filename, else the
# filename will be appended.
# Default:
-default-open-dispatcher =
+default-open-dispatcher = rifle
# default-page (FuzzyUrl):
# The page to open if :open -t/-b/-w is used without URL. Use
editor-encoding = utf-8
# private-browsing (Bool):
-# Do not record visited pages in the history or store web page
-# icons.
+# Open new windows in private browsing mode which does not record
+# visited pages.
# Valid values: true, false
# Default: false
private-browsing = false
# Default: false
xss-auditing = false
-# site-specific-quirks (Bool):
-# Enable QtWebKit workarounds for broken sites.
-# Valid values: true, false
-# Default: true
-site-specific-quirks = true
-
# default-encoding (String):
# Default encoding to use for websites.
# The encoding must be a string describing an encoding such as
-# _utf-8_, _iso-8859-1_, etc. If left empty a default value will be
-# used.
-# Default:
-default-encoding =
+# _utf-8_, _iso-8859-1_, etc.
+# Default: iso-8859-1
+default-encoding = iso-8859-1
# new-instance-open-target (String):
# How to open links in an existing instance if a new one is
# message-timeout (Int):
# Time (in ms) to show messages in the statusbar for.
+# Set to 0 to never clear messages.
# Default: 2000
message-timeout = 2000
# Default: true
hide-scrollbar = true
-# css-media-type (String):
-# Set the CSS media type.
-# Default:
-css-media-type =
-
# smooth-scrolling (Bool):
# Whether to enable smooth scrolling for web pages. Note smooth
# scrolling does not work with the :scroll-px command.
# * `{scroll_pos}`: The page scroll position.
# * `{host}`: The host of the current web page.
# * `{backend}`: Either 'webkit' or 'webengine'
+# * `{private}` : Indicates when private mode is enabled.
# Default: {perc}{title}{title_sep}qutebrowser
window-title-format = {perc}{title}{title_sep}qutebrowser
# The proxy to use.
# In addition to the listed values, you can use a `socks://...` or
# `http://...` URL.
-# This setting only works with Qt 5.8 or newer when using the
-# QtWebEngine backend.
# system: Use the system wide proxy.
# none: Don't use any proxy
# Default: system
# Default: true
show-favicons = true
+# favicon-scale (Float):
+# Scale for favicons in the tab bar. The tab size is unchanged, so
+# big favicons also require extra `tabs->padding`.
+# Default: 1.0
+favicon-scale = 1.0
+
# width (PercOrInt):
# The width of the tab bar if it's vertical, in px or as percentage
# of the window.
# Default: 20%
width = 20%
+# pinned-width (Int):
+# The width for pinned tabs with a horizontal tabbar, in px.
+# Default: 43
+pinned-width = 43
+
# indicator-width (Int):
# Width of the progress indicator (0 to disable).
# Default: 3
# * `{scroll_pos}`: The page scroll position.
# * `{host}`: The host of the current web page.
# * `{backend}`: Either 'webkit' or 'webengine'
+# * `{private}` : Indicates when private mode is enabled.
# Default: {index}: {title}
title-format = {index}: {title}
+# title-format-pinned (FormatString):
+# The format to use for the tab title for pinned tabs. The same
+# placeholders like for title-format are defined.
+# Default: {index}
+title-format-pinned = {index}
+
# title-alignment (TextAlignment):
# Alignment of the text inside of tabs
# Valid values: left, right, center
# resuming up to _n_ pages.
# For more information about the feature, please refer to:
# http://webkit.org/blog/427/webkit-page-cache-i-the-basics/
-# Default:
-maximum-pages-in-cache =
-
-# object-cache-capacities (List of WebKitBytes):
-# The capacities for the global memory cache for dead objects such
-# as stylesheets or scripts. Syntax: cacheMinDeadCapacity,
-# cacheMaxDead, totalCapacity.
-# The _cacheMinDeadCapacity_ specifies the minimum number of bytes
-# that dead objects should consume when the cache is under pressure.
-# _cacheMaxDead_ is the maximum number of bytes that dead objects
-# should consume when the cache is *not* under pressure.
-# _totalCapacity_ specifies the maximum number of bytes that the
-# cache should consume *overall*.
-# Default:
-object-cache-capacities =
-
-# offline-storage-default-quota (WebKitBytes):
-# Default quota for new offline storage databases.
-# Default:
-offline-storage-default-quota =
-
-# offline-web-application-cache-quota (WebKitBytes):
-# Quota for the offline web application cache.
-# Default:
-offline-web-application-cache-quota =
-
-# offline-storage-database (Bool):
-# Whether support for the HTML 5 offline storage feature is enabled.
-# Valid values: true, false
-# Default: true
-offline-storage-database = true
+# Default: 0
+maximum-pages-in-cache = 0
-# offline-web-application-storage (Bool):
+# offline-web-application-cache (Bool):
# Whether support for the HTML 5 web application cache feature is
# enabled.
# An application cache acts like an HTTP cache in some sense. For
# http://dev.w3.org/html5/spec/Overview.html#appcache
# Valid values: true, false
# Default: true
-offline-web-application-storage = true
+offline-web-application-cache = true
# local-storage (Bool):
-# Whether support for the HTML 5 local storage feature is enabled.
+# Whether support for HTML 5 local storage and Web SQL is enabled.
# Valid values: true, false
# Default: true
local-storage = true
# Default: true
webgl = true
-# css-regions (Bool):
-# Enable or disable support for CSS regions.
-# Valid values: true, false
-# Default: true
-css-regions = true
-
# hyperlink-auditing (Bool):
# Enable or disable hyperlink auditing (<a ping>).
# Valid values: true, false
# cookies-store (Bool):
# Whether to store cookies. Note this option needs a restart with
-# QtWebEngine.
+# QtWebEngine on Qt < 5.9.
# Valid values: true, false
# Default: true
cookies-store = true
# Default: black
statusbar.bg = black
+# statusbar.fg.private (QssColor):
+# Foreground color of the statusbar in private browsing mode.
+# Default: ${statusbar.fg}
+statusbar.fg.private = ${statusbar.fg}
+
+# statusbar.bg.private (QssColor):
+# Background color of the statusbar in private browsing mode.
+# Default: #666666
+statusbar.bg.private = #666666
+
# statusbar.fg.insert (QssColor):
# Foreground color of the statusbar in insert mode.
# Default: ${statusbar.fg}
# Default: ${statusbar.bg}
statusbar.bg.command = ${statusbar.bg}
+# statusbar.fg.command.private (QssColor):
+# Foreground color of the statusbar in private browsing + command
+# mode.
+# Default: ${statusbar.fg.private}
+statusbar.fg.command.private = ${statusbar.fg.private}
+
+# statusbar.bg.command.private (QssColor):
+# Background color of the statusbar in private browsing + command
+# mode.
+# Default: ${statusbar.bg.private}
+statusbar.bg.command.private = ${statusbar.bg.private}
+
# statusbar.fg.caret (QssColor):
# Foreground color of the statusbar in caret mode.
# Default: ${statusbar.fg}
# _monospace (Font):
# Default monospace fonts.
-# Default: Terminus, Monospace, "DejaVu Sans Mono", Monaco,
-# "Bitstream Vera Sans Mono", "Andale Mono", "Courier New", Courier,
-# "Liberation Mono", monospace, Fixed, Consolas, Terminal
+# Default: xos4 Terminus, Terminus, Monospace, "DejaVu Sans Mono",
+# Monaco, "Bitstream Vera Sans Mono", "Andale Mono", "Courier New",
+# Courier, "Liberation Mono", monospace, Fixed, Consolas, Terminal
_monospace = Hack, Terminus, Monospace, "DejaVu Sans Mono", Monaco, "Bitstream Vera Sans Mono", "Andale Mono", "Liberation Mono", "Courier New", Courier, monospace, Fixed, Consolas, Terminal
# completion (Font):
# web-size-minimum (Int):
# The hard minimum font size.
-# Default:
-web-size-minimum =
+# Default: 0
+web-size-minimum = 0
# web-size-minimum-logical (Int):
# The minimum logical font size that is applied when zooming out.
-# Default:
-web-size-minimum-logical =
+# Default: 6
+web-size-minimum-logical = 6
# web-size-default (Int):
# The default font size for regular text.
-# Default:
-web-size-default =
+# Default: 16
+web-size-default = 16
# web-size-default-fixed (Int):
# The default font size for fixed-pitch text.
-# Default:
-web-size-default-fixed =
+# Default: 13
+web-size-default-fixed = 13
# keyhint (Font):
# Font used in the keyhint widget.