3 # Configfile for qutebrowser.
5 # This configfile is parsed by python's configparser in extended
6 # interpolation mode. The format is very INI-like, so there are
7 # categories like [general] with "key = value"-pairs.
9 # Note that you shouldn't add your own comments, as this file is
10 # regenerated every time the config is saved.
12 # Interpolation looks like ${value} or ${section:value} and will be
13 # replaced by the respective value.
15 # Some settings will expand environment variables. Note that, since
16 # interpolation is run first, you will need to escape the $ char as
19 # This is the default config, so if you want to remove anything from
20 # here (as opposed to change/add), for example a key binding, set it to
23 # You will need to escape the following values:
24 # - # at the start of the line (at the first position of the key) (\#)
28 # General/miscellaneous options.
31 # ignore-case (IgnoreCase):
32 # Whether to find text on a page case-insensitively.
33 # true: Search case-insensitively
34 # false: Search case-sensitively
35 # smart: Search case-sensitively if there are capital chars
39 # startpage (List of String):
40 # The default page(s) to open at the start, separated by commas.
41 # Default: https://start.duckduckgo.com
42 startpage = https://duckduckgo.com/?t=chakra
44 # yank-ignored-url-parameters (List of String):
45 # The URL parameters to strip with :yank url, separated by commas.
47 # ref,utm_source,utm_medium,utm_campaign,utm_term,utm_content
48 yank-ignored-url-parameters = ref,utm_source,utm_medium,utm_campaign,utm_term,utm_content
50 # default-open-dispatcher (String):
51 # The default program used to open downloads. Set to an empty string
52 # to use the default internal handler.
53 # Any {} in the string will be expanded to the filename, else the
54 # filename will be appended.
56 default-open-dispatcher =
58 # default-page (FuzzyUrl):
59 # The page to open if :open -t/-b/-w is used without URL. Use
60 # `about:blank` for a blank page.
61 # Default: ${startpage}
62 default-page = ${startpage}
64 # auto-search (AutoSearch):
65 # Whether to start a search when something else than a URL is
67 # naive: Use simple/naive check.
68 # dns: Use DNS requests (might be slow!).
69 # false: Never search automatically.
73 # auto-save-config (Bool):
74 # Whether to save the config automatically on quit.
75 # Valid values: true, false
77 auto-save-config = true
79 # auto-save-interval (Int):
80 # How often (in milliseconds) to auto-save config/cookies/etc.
82 auto-save-interval = 15000
84 # editor (ShellCommand):
85 # The editor (and arguments) to use for the `open-editor` command.
86 # The arguments get split like in a shell, so you can use `"` or `'`
88 # `{}` gets replaced by the filename of the file to be edited.
89 # Default: gvim -f "{}"
90 editor = urxvt -e vim "{}"
92 # editor-encoding (Encoding):
93 # Encoding to use for editor.
95 editor-encoding = utf-8
97 # private-browsing (Bool):
98 # Do not record visited pages in the history or store web page
100 # Valid values: true, false
102 private-browsing = false
104 # developer-extras (Bool):
105 # Enable extra tools for Web developers.
106 # This needs to be enabled for `:inspector` to work and also adds an
107 # _Inspect_ entry to the context menu. For QtWebEngine, see
108 # 'qutebrowser --help' instead.
109 # Valid values: true, false
111 developer-extras = true
113 # print-element-backgrounds (Bool):
114 # Whether the background color and images are also drawn when the
116 # This setting only works with Qt 5.8 or newer when using the
117 # QtWebEngine backend.
118 # Valid values: true, false
120 print-element-backgrounds = true
122 # xss-auditing (Bool):
123 # Whether load requests should be monitored for cross-site scripting
125 # Suspicious scripts will be blocked and reported in the inspector's
126 # JavaScript console. Enabling this feature might have an impact on
128 # Valid values: true, false
132 # site-specific-quirks (Bool):
133 # Enable QtWebKit workarounds for broken sites.
134 # Valid values: true, false
136 site-specific-quirks = true
138 # default-encoding (String):
139 # Default encoding to use for websites.
140 # The encoding must be a string describing an encoding such as
141 # _utf-8_, _iso-8859-1_, etc. If left empty a default value will be
146 # new-instance-open-target (String):
147 # How to open links in an existing instance if a new one is
149 # tab: Open a new tab in the existing window and activate the
151 # tab-bg: Open a new background tab in the existing window and
152 # activate the window.
153 # tab-silent: Open a new tab in the existing window without
154 # activating the window.
155 # tab-bg-silent: Open a new background tab in the existing
156 # window without activating the window.
157 # window: Open in a new window.
159 new-instance-open-target = tab
161 # new-instance-open-target.window (String):
162 # Which window to choose when opening links as new tabs.
163 # first-opened: Open new tabs in the first (oldest) opened
165 # last-opened: Open new tabs in the last (newest) opened window.
166 # last-focused: Open new tabs in the most recently focused
168 # last-visible: Open new tabs in the most recently visible
170 # Default: last-focused
171 new-instance-open-target.window = last-focused
173 # log-javascript-console (String):
174 # How to log javascript console messages.
175 # none: Don't log messages.
176 # debug: Log messages with debug level.
177 # info: Log messages with info level.
179 log-javascript-console = none
181 # save-session (Bool):
182 # Whether to always save the open pages.
183 # Valid values: true, false
187 # session-default-name (SessionName):
188 # The name of the session to save by default, or empty for the last
191 session-default-name =
193 # url-incdec-segments (FlagList):
194 # The URL segments where `:navigate increment/decrement` will search
196 # Valid values: host, path, query, anchor
197 # Default: path,query
198 url-incdec-segments = path,query
201 # General options related to the user interface.
204 # history-session-interval (Int):
205 # The maximum time in minutes between two history items for them to
206 # be considered being from the same session. Use -1 to disable
209 history-session-interval = 30
211 # zoom-levels (List of Perc):
212 # The available zoom levels, separated by commas.
214 # 25%,33%,50%,67%,75%,90%,100%,110%,125%,150%,175%,200%,250%,300%,400%,500%
215 zoom-levels = 25%,33%,50%,67%,75%,90%,100%,110%,125%,150%,175%,200%,250%,300%,400%,500%
217 # default-zoom (Perc):
218 # The default zoom level.
222 # downloads-position (VerticalPosition):
223 # Where to show the downloaded files.
224 # Valid values: top, bottom
226 downloads-position = top
228 # status-position (VerticalPosition):
229 # The position of the status bar.
230 # Valid values: top, bottom
232 status-position = bottom
234 # message-timeout (Int):
235 # Time (in ms) to show messages in the statusbar for.
236 # Set to 0 to never clear messages.
238 message-timeout = 2000
240 # message-unfocused (Bool):
241 # Whether to show messages in unfocused windows.
242 # Valid values: true, false
244 message-unfocused = false
246 # confirm-quit (ConfirmQuit):
247 # Whether to confirm quitting the application.
248 # always: Always show a confirmation.
249 # multiple-tabs: Show a confirmation if multiple tabs are
251 # downloads: Show a confirmation if downloads are running
252 # never: Never show a confirmation.
254 confirm-quit = downloads
256 # zoom-text-only (Bool):
257 # Whether the zoom factor on a frame applies only to the text or to
259 # Valid values: true, false
261 zoom-text-only = false
263 # frame-flattening (Bool):
264 # Whether to expand each subframe to its contents.
265 # This will flatten all the frames to become one scrollable page.
266 # Valid values: true, false
268 frame-flattening = false
270 # user-stylesheet (File):
271 # User stylesheet to use (absolute filename or filename relative to
272 # the config directory). Will expand environment variables.
276 # hide-scrollbar (Bool):
277 # Hide the main scrollbar.
278 # Valid values: true, false
280 hide-scrollbar = true
282 # css-media-type (String):
283 # Set the CSS media type.
287 # smooth-scrolling (Bool):
288 # Whether to enable smooth scrolling for web pages. Note smooth
289 # scrolling does not work with the :scroll-px command.
290 # Valid values: true, false
292 smooth-scrolling = false
294 # remove-finished-downloads (Int):
295 # Number of milliseconds to wait before removing finished downloads.
296 # Will not be removed if value is -1.
298 remove-finished-downloads = -1
300 # hide-statusbar (Bool):
301 # Whether to hide the statusbar unless a message is shown.
302 # Valid values: true, false
304 hide-statusbar = false
306 # statusbar-padding (Padding):
307 # Padding for statusbar (top, bottom, left, right).
309 statusbar-padding = 1,1,0,0
311 # window-title-format (FormatString):
312 # The format to use for the window title. The following placeholders
314 # * `{perc}`: The percentage as a string like `[10%]`.
315 # * `{perc_raw}`: The raw percentage, e.g. `10`
316 # * `{title}`: The title of the current web page
317 # * `{title_sep}`: The string ` - ` if a title is set, empty
319 # * `{id}`: The internal window ID of this window.
320 # * `{scroll_pos}`: The page scroll position.
321 # * `{host}`: The host of the current web page.
322 # * `{backend}`: Either 'webkit' or 'webengine'
323 # Default: {perc}{title}{title_sep}qutebrowser
324 window-title-format = {perc}{title}{title_sep}qutebrowser
326 # modal-js-dialog (Bool):
327 # Use standard JavaScript modal dialog for alert() and confirm()
328 # Valid values: true, false
330 modal-js-dialog = false
332 # hide-wayland-decoration (Bool):
333 # Hide the window decoration when using wayland (requires restart)
334 # Valid values: true, false
336 hide-wayland-decoration = false
338 # keyhint-blacklist (List of String):
339 # Keychains that shouldn't be shown in the keyhint dialog
340 # Globs are supported, so ';*' will blacklist all keychainsstarting
341 # with ';'. Use '*' to disable keyhints
345 # keyhint-delay (Int):
346 # Time from pressing a key to seeing the keyhint dialog (ms)
350 # prompt-radius (Int):
351 # The rounding radius for the edges of prompts.
355 # prompt-filebrowser (Bool):
356 # Show a filebrowser in upload/download prompts.
357 # Valid values: true, false
359 prompt-filebrowser = true
362 # Settings related to the network.
365 # do-not-track (Bool):
366 # Value to send in the `DNT` header.
367 # Valid values: true, false
371 # accept-language (String):
372 # Value to send in the `accept-language` header.
374 accept-language = en-US,en,de,fr
376 # referer-header (String):
377 # Send the Referer header
378 # always: Always send.
379 # never: Never send; this is not recommended, as some sites may
381 # same-domain: Only send for the same domain. This will still
382 # protect your privacy, but shouldn't break any sites.
383 # Default: same-domain
384 referer-header = same-domain
386 # user-agent (UserAgent):
387 # User agent to send. Empty to send the default.
393 # In addition to the listed values, you can use a `socks://...` or
395 # This setting only works with Qt 5.8 or newer when using the
396 # QtWebEngine backend.
397 # system: Use the system wide proxy.
398 # none: Don't use any proxy
402 # proxy-dns-requests (Bool):
403 # Whether to send DNS requests over the configured proxy.
404 # Valid values: true, false
406 proxy-dns-requests = true
408 # ssl-strict (BoolAsk):
409 # Whether to validate SSL handshakes.
410 # Valid values: true, false, ask
414 # dns-prefetch (Bool):
415 # Whether to try to pre-fetch DNS entries to speed up browsing.
416 # Valid values: true, false
420 # custom-headers (HeaderDict):
421 # Set custom headers for qutebrowser HTTP requests.
426 # Set location of a netrc-file for HTTP authentication. If empty,
432 # Options related to completion and command history.
436 # When to show the autocompletion window.
437 # always: Whenever a completion is available.
438 # auto: Whenever a completion is requested.
443 # download-path-suggestion (String):
444 # What to display in the download filename input.
445 # path: Show only the download path.
446 # filename: Show only download filename.
447 # both: Show download path and filename.
449 download-path-suggestion = path
451 # timestamp-format (TimestampTemplate):
452 # How to format timestamps (e.g. for history)
454 timestamp-format = %Y-%m-%d
456 # height (PercOrInt):
457 # The height of the completion, in px or as percentage of the
462 # cmd-history-max-items (Int):
463 # How many commands to save in the command history.
464 # 0: no history / -1: unlimited
466 cmd-history-max-items = 100
468 # web-history-max-items (Int):
469 # How many URLs to show in the web history.
470 # 0: no history / -1: unlimited
472 web-history-max-items = 1000
474 # quick-complete (Bool):
475 # Whether to move on to the next part when there's only one possible
477 # Valid values: true, false
479 quick-complete = false
482 # Whether to shrink the completion to be smaller than the configured
483 # size if there are no scrollbars.
484 # Valid values: true, false
488 # scrollbar-width (Int):
489 # Width of the scrollbar in the completion window (in px).
493 # scrollbar-padding (Int):
494 # Padding of scrollbar handle in completion window (in px).
496 scrollbar-padding = 2
499 # Options related to input modes.
503 # Timeout (in milliseconds) for ambiguous key bindings.
504 # If the current input forms both a complete match and a partial
505 # match, the complete match will be executed after this time.
509 # partial-timeout (Int):
510 # Timeout (in milliseconds) for partially typed key bindings.
511 # If the current input forms only partial matches, the keystring
512 # will be cleared after this time.
514 partial-timeout = 5000
516 # insert-mode-on-plugins (Bool):
517 # Whether to switch to insert mode when clicking flash and other
519 # Valid values: true, false
521 insert-mode-on-plugins = false
523 # auto-leave-insert-mode (Bool):
524 # Whether to leave insert mode if a non-editable element is clicked.
525 # Valid values: true, false
527 auto-leave-insert-mode = true
529 # auto-insert-mode (Bool):
530 # Whether to automatically enter insert mode if an editable element
531 # is focused after page load.
532 # Valid values: true, false
534 auto-insert-mode = false
536 # forward-unbound-keys (String):
537 # Whether to forward unbound keys to the webview in normal mode.
538 # all: Forward all unbound keys.
539 # auto: Forward unbound non-alphanumeric keys.
540 # none: Don't forward any keys.
542 forward-unbound-keys = auto
544 # spatial-navigation (Bool):
545 # Enables or disables the Spatial Navigation feature.
546 # Spatial navigation consists in the ability to navigate between
547 # focusable elements in a Web page, such as hyperlinks and form
548 # controls, by using Left, Right, Up and Down arrow keys. For
549 # example, if a user presses the Right key, heuristics determine
550 # whether there is an element he might be trying to reach towards
551 # the right and which element he probably wants.
552 # Valid values: true, false
554 spatial-navigation = false
556 # links-included-in-focus-chain (Bool):
557 # Whether hyperlinks should be included in the keyboard focus chain.
558 # Valid values: true, false
560 links-included-in-focus-chain = true
562 # rocker-gestures (Bool):
563 # Whether to enable Opera-like mouse rocker gestures. This disables
565 # Valid values: true, false
567 rocker-gestures = false
569 # mouse-zoom-divider (Int):
570 # How much to divide the mouse wheel movements to translate them
571 # into zoom increments.
573 mouse-zoom-divider = 512
576 # Configuration of the tab bar.
579 # background-tabs (Bool):
580 # Whether to open new tabs (middleclick/ctrl+click) in background.
581 # Valid values: true, false
583 background-tabs = false
585 # select-on-remove (SelectOnRemove):
586 # Which tab to select when the focused tab is removed.
587 # prev: Select the tab which came before the closed one (left in
588 # horizontal, above in vertical).
589 # next: Select the tab which came after the closed one (right in
590 # horizontal, below in vertical).
591 # last-used: Select the previously selected tab.
593 select-on-remove = prev
595 # new-tab-position (NewTabPosition):
596 # How new tabs are positioned.
597 # prev: Before the current tab.
598 # next: After the current tab.
599 # first: At the beginning.
602 new-tab-position = next
604 # new-tab-position-explicit (NewTabPosition):
605 # How new tabs opened explicitly are positioned.
606 # prev: Before the current tab.
607 # next: After the current tab.
608 # first: At the beginning.
611 new-tab-position-explicit = next
613 # last-close (String):
614 # Behavior when the last tab is closed.
615 # ignore: Don't do anything.
616 # blank: Load a blank page.
617 # startpage: Load the start page.
618 # default-page: Load the default page.
619 # close: Close the window.
624 # When to show the tab bar
625 # always: Always show the tab bar.
626 # never: Always hide the tab bar.
627 # multiple: Hide the tab bar if only one tab is open.
628 # switching: Show the tab bar when switching tabs.
632 # show-switching-delay (Int):
633 # Time to show the tab bar before hiding it when tabs->show is set
636 show-switching-delay = 800
639 # Whether to wrap when changing tabs.
640 # Valid values: true, false
645 # Whether tabs should be movable.
646 # Valid values: true, false
650 # close-mouse-button (String):
651 # On which mouse button to close tabs.
652 # right: Close tabs on right-click.
653 # middle: Close tabs on middle-click.
654 # none: Don't close tabs using the mouse.
656 close-mouse-button = middle
658 # position (Position):
659 # The position of the tab bar.
660 # Valid values: top, bottom, left, right
664 # show-favicons (Bool):
665 # Whether to show favicons in the tab bar.
666 # Valid values: true, false
670 # favicon-scale (Float):
671 # Scale for favicons in the tab bar. The tab size is unchanged, so
672 # big favicons also require extra `tabs->padding`.
677 # The width of the tab bar if it's vertical, in px or as percentage
682 # indicator-width (Int):
683 # Width of the progress indicator (0 to disable).
687 # tabs-are-windows (Bool):
688 # Whether to open windows instead of tabs.
689 # Valid values: true, false
691 tabs-are-windows = false
693 # title-format (FormatString):
694 # The format to use for the tab title. The following placeholders
696 # * `{perc}`: The percentage as a string like `[10%]`.
697 # * `{perc_raw}`: The raw percentage, e.g. `10`
698 # * `{title}`: The title of the current web page
699 # * `{title_sep}`: The string ` - ` if a title is set, empty
701 # * `{index}`: The index of this tab.
702 # * `{id}`: The internal tab ID of this tab.
703 # * `{scroll_pos}`: The page scroll position.
704 # * `{host}`: The host of the current web page.
705 # * `{backend}`: Either 'webkit' or 'webengine'
706 # Default: {index}: {title}
707 title-format = {index}: {title}
709 # title-alignment (TextAlignment):
710 # Alignment of the text inside of tabs
711 # Valid values: left, right, center
713 title-alignment = left
715 # mousewheel-tab-switching (Bool):
716 # Switch between tabs using the mouse wheel.
717 # Valid values: true, false
719 mousewheel-tab-switching = true
722 # Padding for tabs (top, bottom, left, right).
726 # indicator-padding (Padding):
727 # Padding for indicators (top, bottom, left, right).
729 indicator-padding = 2,2,0,4
732 # Settings related to cache and storage.
735 # download-directory (Directory):
736 # The directory to save downloads to. An empty value selects a
737 # sensible os-specific default. Will expand environment variables.
739 download-directory = ~/downloads
741 # prompt-download-directory (Bool):
742 # Whether to prompt the user for the download location.
743 # If set to false, 'download-directory' will be used.
744 # Valid values: true, false
746 prompt-download-directory = true
748 # remember-download-directory (Bool):
749 # Whether to remember the last used download directory.
750 # Valid values: true, false
752 remember-download-directory = true
754 # maximum-pages-in-cache (Int):
755 # The maximum number of pages to hold in the global memory page
757 # The Page Cache allows for a nicer user experience when navigating
758 # forth or back to pages in the forward/back history, by pausing and
759 # resuming up to _n_ pages.
760 # For more information about the feature, please refer to:
761 # http://webkit.org/blog/427/webkit-page-cache-i-the-basics/
763 maximum-pages-in-cache =
765 # object-cache-capacities (List of WebKitBytes):
766 # The capacities for the global memory cache for dead objects such
767 # as stylesheets or scripts. Syntax: cacheMinDeadCapacity,
768 # cacheMaxDead, totalCapacity.
769 # The _cacheMinDeadCapacity_ specifies the minimum number of bytes
770 # that dead objects should consume when the cache is under pressure.
771 # _cacheMaxDead_ is the maximum number of bytes that dead objects
772 # should consume when the cache is *not* under pressure.
773 # _totalCapacity_ specifies the maximum number of bytes that the
774 # cache should consume *overall*.
776 object-cache-capacities =
778 # offline-storage-default-quota (WebKitBytes):
779 # Default quota for new offline storage databases.
781 offline-storage-default-quota =
783 # offline-web-application-cache-quota (WebKitBytes):
784 # Quota for the offline web application cache.
786 offline-web-application-cache-quota =
788 # offline-storage-database (Bool):
789 # Whether support for the HTML 5 offline storage feature is enabled.
790 # Valid values: true, false
792 offline-storage-database = true
794 # offline-web-application-storage (Bool):
795 # Whether support for the HTML 5 web application cache feature is
797 # An application cache acts like an HTTP cache in some sense. For
798 # documents that use the application cache via JavaScript, the
799 # loader engine will first ask the application cache for the
800 # contents, before hitting the network.
801 # The feature is described in details at:
802 # http://dev.w3.org/html5/spec/Overview.html#appcache
803 # Valid values: true, false
805 offline-web-application-storage = true
807 # local-storage (Bool):
808 # Whether support for the HTML 5 local storage feature is enabled.
809 # Valid values: true, false
814 # Size of the HTTP network cache. Empty to use the default value.
816 cache-size = 52428800
819 # Loaded plugins/scripts and allowed actions.
822 # allow-images (Bool):
823 # Whether images are automatically loaded in web pages.
824 # Valid values: true, false
828 # allow-javascript (Bool):
829 # Enables or disables the running of JavaScript programs.
830 # Valid values: true, false
832 allow-javascript = true
834 # allow-plugins (Bool):
835 # Enables or disables plugins in Web pages.
836 # Qt plugins with a mimetype such as "application/x-qt-plugin" are
837 # not affected by this setting.
838 # Valid values: true, false
840 allow-plugins = false
843 # Enables or disables WebGL.
844 # Valid values: true, false
848 # css-regions (Bool):
849 # Enable or disable support for CSS regions.
850 # Valid values: true, false
854 # hyperlink-auditing (Bool):
855 # Enable or disable hyperlink auditing (<a ping>).
856 # Valid values: true, false
858 hyperlink-auditing = false
860 # geolocation (BoolAsk):
861 # Allow websites to request geolocations.
862 # Valid values: true, false, ask
866 # notifications (BoolAsk):
867 # Allow websites to show notifications.
868 # Valid values: true, false, ask
870 notifications = false
872 # media-capture (BoolAsk):
873 # Allow websites to record audio/video.
874 # Valid values: true, false, ask
878 # javascript-can-open-windows-automatically (Bool):
879 # Whether JavaScript programs can open new windows without user
881 # Valid values: true, false
883 javascript-can-open-windows-automatically = false
885 # javascript-can-close-windows (Bool):
886 # Whether JavaScript programs can close windows.
887 # Valid values: true, false
889 javascript-can-close-windows = false
891 # javascript-can-access-clipboard (Bool):
892 # Whether JavaScript programs can read or write to the clipboard.
893 # With QtWebEngine, writing the clipboard as response to a user
894 # interaction is always allowed.
895 # Valid values: true, false
897 javascript-can-access-clipboard = false
899 # ignore-javascript-prompt (Bool):
900 # Whether all javascript prompts should be ignored.
901 # Valid values: true, false
903 ignore-javascript-prompt = false
905 # ignore-javascript-alert (Bool):
906 # Whether all javascript alerts should be ignored.
907 # Valid values: true, false
909 ignore-javascript-alert = false
911 # local-content-can-access-remote-urls (Bool):
912 # Whether locally loaded documents are allowed to access remote
914 # Valid values: true, false
916 local-content-can-access-remote-urls = false
918 # local-content-can-access-file-urls (Bool):
919 # Whether locally loaded documents are allowed to access other local
921 # Valid values: true, false
923 local-content-can-access-file-urls = true
925 # cookies-accept (String):
926 # Control which cookies to accept.
927 # all: Accept all cookies.
928 # no-3rdparty: Accept cookies from the same origin only.
929 # no-unknown-3rdparty: Accept cookies from the same origin only,
930 # unless a cookie is already set for the domain.
931 # never: Don't accept cookies at all.
932 # Default: no-3rdparty
933 cookies-accept = no-3rdparty
935 # cookies-store (Bool):
936 # Whether to store cookies. Note this option needs a restart with
937 # QtWebEngine on Qt < 5.9.
938 # Valid values: true, false
942 # host-block-lists (List of Url):
943 # List of URLs of lists which contain hosts to block.
944 # The file can be in one of the following formats:
945 # - An '/etc/hosts'-like file
946 # - One host per line
947 # - A zip-file of any of the above, with either only one file, or a
948 # file named 'hosts' (with any extension).
950 # https://www.malwaredomainlist.com/hostslist/hosts.txt,http://someonewhocares.org/hosts/hosts,http://winhelp2002.mvps.org/hosts.zip,http://malwaredomains.lehigh.edu/files/justdomains.zip,https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&mimetype=plaintext
951 host-block-lists = http://www.malwaredomainlist.com/hostslist/hosts.txt,http://someonewhocares.org/hosts/hosts,http://winhelp2002.mvps.org/hosts.zip,http://malwaredomains.lehigh.edu/files/justdomains.zip,http://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&mimetype=plaintext
953 # host-blocking-enabled (Bool):
954 # Whether host blocking is enabled.
955 # Valid values: true, false
957 host-blocking-enabled = true
959 # host-blocking-whitelist (List of String):
960 # List of domains that should always be loaded, despite being
962 # Domains may contain * and ? wildcards and are otherwise required
963 # to exactly match the requested domain.
964 # Local domains are always exempt from hostblocking.
966 host-blocking-whitelist = piwik.org
968 # enable-pdfjs (Bool):
969 # Enable pdf.js to view PDF files in the browser.
970 # Note that the files can still be downloaded by clicking the
971 # download button in the pdf.js viewer.
972 # Valid values: true, false
981 # CSS border value for hints.
982 # Default: 1px solid #E3BE23
983 border = 1px solid #E3BE23
986 # Mode to use for hints.
987 # number: Use numeric hints. (In this mode you can also type
988 # letters form the hinted element to filter and reduce the number of
989 # elements that are hinted.)
990 # letter: Use the chars in the hints -> chars setting.
991 # word: Use hints words based on the html elements and the extra
996 # chars (UniqueCharString):
997 # Chars used for hint strings.
1002 # Minimum number of chars used for hint strings.
1007 # Whether to scatter hint key chains (like Vimium) or not (like
1008 # dwb). Ignored for number hints.
1009 # Valid values: true, false
1014 # Make chars in hint strings uppercase.
1015 # Valid values: true, false
1019 # dictionary (File):
1020 # The dictionary file to be used by the word hints.
1021 # Default: /usr/share/dict/words
1022 dictionary = /usr/share/dict/words
1024 # auto-follow (String):
1025 # Controls when a hint can be automatically followed without the
1026 # user pressing Enter.
1027 # always: Auto-follow whenever there is only a single hint on a
1029 # unique-match: Auto-follow whenever there is a unique non-empty
1030 # match in either the hint string (word mode) or filter (number
1032 # full-match: Follow the hint when the user typed the whole hint
1033 # (letter, word or number mode) or the element's text (only in
1035 # never: The user will always need to press Enter to follow a
1037 # Default: unique-match
1038 auto-follow = unique-match
1040 # auto-follow-timeout (Int):
1041 # A timeout (in milliseconds) to inhibit normal-mode key bindings
1042 # after a successful auto-follow.
1044 auto-follow-timeout = 0
1046 # next-regexes (List of Regex):
1047 # A comma-separated list of regexes to use for 'next' links.
1049 # \bnext\b,\bmore\b,\bnewer\b,\b[>→≫]\b,\b(>>|»)\b,\bcontinue\b
1050 next-regexes = \bnext\b,\bmore\b,\bnewer\b,\b[>→≫]\b,\b(>>|»)\b,\bcontinue\b
1052 # prev-regexes (List of Regex):
1053 # A comma-separated list of regexes to use for 'prev' links.
1054 # Default: \bprev(ious)?\b,\bback\b,\bolder\b,\b[<←≪]\b,\b(<<|«)\b
1055 prev-regexes = \bprev(ious)?\b,\bback\b,\bolder\b,\b[<←≪]\b,\b(<<|«)\b
1057 # find-implementation (String):
1058 # Which implementation to use to find elements to hint.
1059 # javascript: Better but slower
1060 # python: Slightly worse but faster
1062 find-implementation = javascript
1064 # hide-unmatched-rapid-hints (Bool):
1065 # Controls hiding unmatched hints in rapid mode.
1066 # Valid values: true, false
1068 hide-unmatched-rapid-hints = true
1071 # Definitions of search engines which can be used via the address bar.
1072 # The searchengine named `DEFAULT` is used when `general -> auto-search`
1073 # is true and something else than a URL was entered to be opened. Other
1074 # search engines can be used by prepending the search engine name to the
1075 # search term, e.g. `:open google qutebrowser`. The string `{}` will be
1076 # replaced by the search term, use `{{` and `}}` for literal `{`/`}`
1079 DEFAULT = ${duckduckgo}
1080 duckduckgo = https://duckduckgo.com/?t=chakra&q={}
1082 google = https://encrypted.google.com/search?q={}
1084 wikipedia = http://en.wikipedia.org/w/index.php?title=Special:Search&search={}
1086 pcl = http://docs.pointclouds.org/trunk/search.php?query={}
1087 std = http://en.cppreference.com/mwiki/index.php?title=Special%3ASearch&search={}
1088 cv = http://docs.opencv.org/3.1.0/index.html#gsc.tab=0&gsc.ref=more%3A3.1&gsc.q={}
1091 # Aliases for commands.
1092 # By default, no aliases are defined. Example which adds a new command
1093 # `:qtb` to open qutebrowsers website:
1094 # `qtb = open https://www.qutebrowser.org/`
1099 mpv = spawn --userscript ~/src/qutebrowser/misc/userscripts/view_in_mpv
1102 # Colors used in the UI.
1103 # A value can be in one of the following format:
1104 # * `#RGB`/`#RRGGBB`/`#RRRGGGBBB`/`#RRRRGGGGBBBB`
1105 # * An SVG color name as specified in http://www.w3.org/TR/SVG/types.html#ColorKeywords[the W3C specification].
1106 # * transparent (no color)
1107 # * `rgb(r, g, b)` / `rgba(r, g, b, a)` (values 0-255 or percentages)
1108 # * `hsv(h, s, v)` / `hsva(h, s, v, a)` (values 0-255, hue 0-359)
1109 # * A gradient as explained in http://doc.qt.io/qt-5/stylesheet-reference.html#list-of-property-types[the Qt documentation] under ``Gradient''.
1110 # A *.system value determines the color system to use for color
1111 # interpolation between similarly-named *.start and *.stop entries,
1112 # regardless of how they are defined in the options. Valid values are
1113 # 'rgb', 'hsv', and 'hsl'.
1114 # The `hints.*` values are a special case as they're real CSS colors, not Qt-CSS colors. There, for a gradient, you need to use `-webkit-gradient`, see https://www.webkit.org/blog/175/introducing-css-gradients/[the WebKit documentation].
1117 # completion.fg (QtColor):
1118 # Text color of the completion widget.
1120 completion.fg = white
1122 # completion.bg (QssColor):
1123 # Background color of the completion widget.
1125 completion.bg = #333333
1127 # completion.alternate-bg (QssColor):
1128 # Alternating background color of the completion widget.
1130 completion.alternate-bg = #444444
1132 # completion.category.fg (QtColor):
1133 # Foreground color of completion widget category headers.
1135 completion.category.fg = white
1137 # completion.category.bg (QssColor):
1138 # Background color of the completion widget category headers.
1139 # Default: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #888888,
1141 completion.category.bg = qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #888888, stop:1 #505050)
1143 # completion.category.border.top (QssColor):
1144 # Top border color of the completion widget category headers.
1146 completion.category.border.top = black
1148 # completion.category.border.bottom (QssColor):
1149 # Bottom border color of the completion widget category headers.
1150 # Default: ${completion.category.border.top}
1151 completion.category.border.bottom = ${completion.category.border.top}
1153 # completion.item.selected.fg (QtColor):
1154 # Foreground color of the selected completion item.
1156 completion.item.selected.fg = black
1158 # completion.item.selected.bg (QssColor):
1159 # Background color of the selected completion item.
1161 completion.item.selected.bg = #e8c000
1163 # completion.item.selected.border.top (QssColor):
1164 # Top border color of the completion widget category headers.
1166 completion.item.selected.border.top = #bbbb00
1168 # completion.item.selected.border.bottom (QssColor):
1169 # Bottom border color of the selected completion item.
1170 # Default: ${completion.item.selected.border.top}
1171 completion.item.selected.border.bottom = ${completion.item.selected.border.top}
1173 # completion.match.fg (QssColor):
1174 # Foreground color of the matched text in the completion.
1176 completion.match.fg = #ff4444
1178 # completion.scrollbar.fg (QssColor):
1179 # Color of the scrollbar handle in completion view.
1180 # Default: ${completion.fg}
1181 completion.scrollbar.fg = ${completion.fg}
1183 # completion.scrollbar.bg (QssColor):
1184 # Color of the scrollbar in completion view
1185 # Default: ${completion.bg}
1186 completion.scrollbar.bg = ${completion.bg}
1188 # statusbar.fg (QssColor):
1189 # Foreground color of the statusbar.
1191 statusbar.fg = white
1193 # statusbar.bg (QssColor):
1194 # Background color of the statusbar.
1196 statusbar.bg = black
1198 # statusbar.fg.insert (QssColor):
1199 # Foreground color of the statusbar in insert mode.
1200 # Default: ${statusbar.fg}
1201 statusbar.fg.insert = ${statusbar.fg}
1203 # statusbar.bg.insert (QssColor):
1204 # Background color of the statusbar in insert mode.
1205 # Default: darkgreen
1206 statusbar.bg.insert = darkgreen
1208 # statusbar.fg.command (QssColor):
1209 # Foreground color of the statusbar in command mode.
1210 # Default: ${statusbar.fg}
1211 statusbar.fg.command = ${statusbar.fg}
1213 # statusbar.bg.command (QssColor):
1214 # Background color of the statusbar in command mode.
1215 # Default: ${statusbar.bg}
1216 statusbar.bg.command = ${statusbar.bg}
1218 # statusbar.fg.caret (QssColor):
1219 # Foreground color of the statusbar in caret mode.
1220 # Default: ${statusbar.fg}
1221 statusbar.fg.caret = ${statusbar.fg}
1223 # statusbar.bg.caret (QssColor):
1224 # Background color of the statusbar in caret mode.
1226 statusbar.bg.caret = purple
1228 # statusbar.fg.caret-selection (QssColor):
1229 # Foreground color of the statusbar in caret mode with a selection
1230 # Default: ${statusbar.fg}
1231 statusbar.fg.caret-selection = ${statusbar.fg}
1233 # statusbar.bg.caret-selection (QssColor):
1234 # Background color of the statusbar in caret mode with a selection
1236 statusbar.bg.caret-selection = #a12dff
1238 # statusbar.progress.bg (QssColor):
1239 # Background color of the progress bar.
1241 statusbar.progress.bg = white
1243 # statusbar.url.fg (QssColor):
1244 # Default foreground color of the URL in the statusbar.
1245 # Default: ${statusbar.fg}
1246 statusbar.url.fg = ${statusbar.fg}
1248 # statusbar.url.fg.success (QssColor):
1249 # Foreground color of the URL in the statusbar on successful load
1252 statusbar.url.fg.success = white
1254 # statusbar.url.fg.success.https (QssColor):
1255 # Foreground color of the URL in the statusbar on successful load
1258 statusbar.url.fg.success.https = lime
1260 # statusbar.url.fg.error (QssColor):
1261 # Foreground color of the URL in the statusbar on error.
1263 statusbar.url.fg.error = orange
1265 # statusbar.url.fg.warn (QssColor):
1266 # Foreground color of the URL in the statusbar when there's a
1269 statusbar.url.fg.warn = yellow
1271 # statusbar.url.fg.hover (QssColor):
1272 # Foreground color of the URL in the statusbar for hovered links.
1274 statusbar.url.fg.hover = aqua
1276 # tabs.fg.odd (QtColor):
1277 # Foreground color of unselected odd tabs.
1281 # tabs.bg.odd (QtColor):
1282 # Background color of unselected odd tabs.
1286 # tabs.fg.even (QtColor):
1287 # Foreground color of unselected even tabs.
1289 tabs.fg.even = white
1291 # tabs.bg.even (QtColor):
1292 # Background color of unselected even tabs.
1294 tabs.bg.even = darkgrey
1296 # tabs.fg.selected.odd (QtColor):
1297 # Foreground color of selected odd tabs.
1299 tabs.fg.selected.odd = white
1301 # tabs.bg.selected.odd (QtColor):
1302 # Background color of selected odd tabs.
1304 tabs.bg.selected.odd = black
1306 # tabs.fg.selected.even (QtColor):
1307 # Foreground color of selected even tabs.
1308 # Default: ${tabs.fg.selected.odd}
1309 tabs.fg.selected.even = ${tabs.fg.selected.odd}
1311 # tabs.bg.selected.even (QtColor):
1312 # Background color of selected even tabs.
1313 # Default: ${tabs.bg.selected.odd}
1314 tabs.bg.selected.even = ${tabs.bg.selected.odd}
1316 # tabs.bg.bar (QtColor):
1317 # Background color of the tab bar.
1319 tabs.bg.bar = #555555
1321 # tabs.indicator.start (QtColor):
1322 # Color gradient start for the tab indicator.
1324 tabs.indicator.start = #0000aa
1326 # tabs.indicator.stop (QtColor):
1327 # Color gradient end for the tab indicator.
1329 tabs.indicator.stop = #00aa00
1331 # tabs.indicator.error (QtColor):
1332 # Color for the tab indicator on errors..
1334 tabs.indicator.error = #ff0000
1336 # tabs.indicator.system (ColorSystem):
1337 # Color gradient interpolation system for the tab indicator.
1338 # rgb: Interpolate in the RGB color system.
1339 # hsv: Interpolate in the HSV color system.
1340 # hsl: Interpolate in the HSL color system.
1341 # none: Don't show a gradient.
1343 tabs.indicator.system = rgb
1345 # hints.fg (QssColor):
1346 # Font color for hints.
1350 # hints.bg (QssColor):
1351 # Background color for hints. Note that you can use a `rgba(...)`
1352 # value for transparency.
1353 # Default: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 rgba(255,
1354 # 247, 133, 0.8), stop:1 rgba(255, 197, 66, 0.8))
1355 hints.bg = qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 rgba(255, 247, 133, 0.8), stop:1 rgba(255, 197, 66, 0.8))
1357 # hints.fg.match (QssColor):
1358 # Font color for the matched part of hints.
1360 hints.fg.match = green
1362 # downloads.bg.bar (QssColor):
1363 # Background color for the download bar.
1365 downloads.bg.bar = black
1367 # downloads.fg.start (QtColor):
1368 # Color gradient start for download text.
1370 downloads.fg.start = white
1372 # downloads.bg.start (QtColor):
1373 # Color gradient start for download backgrounds.
1375 downloads.bg.start = #0000aa
1377 # downloads.fg.stop (QtColor):
1378 # Color gradient end for download text.
1379 # Default: ${downloads.fg.start}
1380 downloads.fg.stop = ${downloads.fg.start}
1382 # downloads.bg.stop (QtColor):
1383 # Color gradient stop for download backgrounds.
1385 downloads.bg.stop = #00aa00
1387 # downloads.fg.system (ColorSystem):
1388 # Color gradient interpolation system for download text.
1389 # rgb: Interpolate in the RGB color system.
1390 # hsv: Interpolate in the HSV color system.
1391 # hsl: Interpolate in the HSL color system.
1392 # none: Don't show a gradient.
1394 downloads.fg.system = rgb
1396 # downloads.bg.system (ColorSystem):
1397 # Color gradient interpolation system for download backgrounds.
1398 # rgb: Interpolate in the RGB color system.
1399 # hsv: Interpolate in the HSV color system.
1400 # hsl: Interpolate in the HSL color system.
1401 # none: Don't show a gradient.
1403 downloads.bg.system = rgb
1405 # downloads.fg.error (QtColor):
1406 # Foreground color for downloads with errors.
1408 downloads.fg.error = white
1410 # downloads.bg.error (QtColor):
1411 # Background color for downloads with errors.
1413 downloads.bg.error = red
1415 # webpage.bg (QtColor):
1416 # Background color for webpages if unset (or empty to use the
1421 # keyhint.fg (QssColor):
1422 # Text color for the keyhint widget.
1424 keyhint.fg = #FFFFFF
1426 # keyhint.fg.suffix (CssColor):
1427 # Highlight color for keys to complete the current keychain
1429 keyhint.fg.suffix = #FFFF00
1431 # keyhint.bg (QssColor):
1432 # Background color of the keyhint widget.
1433 # Default: rgba(0, 0, 0, 80%)
1434 keyhint.bg = rgba(0, 0, 0, 80%)
1436 # messages.fg.error (QssColor):
1437 # Foreground color of an error message.
1439 messages.fg.error = ${statusbar.fg}
1441 # messages.bg.error (QssColor):
1442 # Background color of an error message.
1444 messages.bg.error = red
1446 # messages.border.error (QssColor):
1447 # Border color of an error message.
1449 messages.border.error = #bb0000
1451 # messages.fg.warning (QssColor):
1452 # Foreground color a warning message.
1454 messages.fg.warning = ${statusbar.fg}
1456 # messages.bg.warning (QssColor):
1457 # Background color of a warning message.
1458 # Default: darkorange
1459 messages.bg.warning = darkorange
1461 # messages.border.warning (QssColor):
1462 # Border color of an error message.
1464 messages.border.warning = #d47300
1466 # messages.fg.info (QssColor):
1467 # Foreground color an info message.
1469 messages.fg.info = white
1471 # messages.bg.info (QssColor):
1472 # Background color of an info message.
1474 messages.bg.info = black
1476 # messages.border.info (QssColor):
1477 # Border color of an info message.
1479 messages.border.info = #333333
1481 # prompts.fg (QssColor):
1482 # Foreground color for prompts.
1484 prompts.fg = ${statusbar.fg}
1486 # prompts.bg (QssColor):
1487 # Background color for prompts.
1489 prompts.bg = #333333
1491 # prompts.selected.bg (QssColor):
1492 # Background color for the selected item in filename prompts.
1494 prompts.selected.bg = #308cc6
1497 # Fonts used for the UI, with optional style/weight/size.
1498 # * Style: `normal`/`italic`/`oblique`
1499 # * Weight: `normal`, `bold`, `100`..`900`
1500 # * Size: _number_ `px`/`pt`
1503 # _monospace (Font):
1504 # Default monospace fonts.
1505 # Default: xos4 Terminus, Terminus, Monospace, "DejaVu Sans Mono",
1506 # Monaco, "Bitstream Vera Sans Mono", "Andale Mono", "Courier New",
1507 # Courier, "Liberation Mono", monospace, Fixed, Consolas, Terminal
1508 _monospace = Hack, Terminus, Monospace, "DejaVu Sans Mono", Monaco, "Bitstream Vera Sans Mono", "Andale Mono", "Liberation Mono", "Courier New", Courier, monospace, Fixed, Consolas, Terminal
1510 # completion (Font):
1511 # Font used in the completion widget.
1512 # Default: 8pt ${_monospace}
1513 completion = 8pt ${_monospace}
1515 # completion.category (Font):
1516 # Font used in the completion categories.
1517 # Default: bold ${completion}
1518 completion.category = bold ${completion}
1521 # Font used in the tab bar.
1522 # Default: 8pt ${_monospace}
1523 tabbar = 8pt ${_monospace}
1526 # Font used in the statusbar.
1527 # Default: 8pt ${_monospace}
1528 statusbar = 8pt ${_monospace}
1531 # Font used for the downloadbar.
1532 # Default: 8pt ${_monospace}
1533 downloads = 8pt ${_monospace}
1536 # Font used for the hints.
1537 # Default: bold 13px ${_monospace}
1538 hints = bold 12px ${_monospace}
1540 # debug-console (QtFont):
1541 # Font used for the debugging console.
1542 # Default: 8pt ${_monospace}
1543 debug-console = 8pt ${_monospace}
1545 # web-family-standard (FontFamily):
1546 # Font family for standard fonts.
1548 web-family-standard =
1550 # web-family-fixed (FontFamily):
1551 # Font family for fixed fonts.
1555 # web-family-serif (FontFamily):
1556 # Font family for serif fonts.
1560 # web-family-sans-serif (FontFamily):
1561 # Font family for sans-serif fonts.
1563 web-family-sans-serif =
1565 # web-family-cursive (FontFamily):
1566 # Font family for cursive fonts.
1568 web-family-cursive =
1570 # web-family-fantasy (FontFamily):
1571 # Font family for fantasy fonts.
1573 web-family-fantasy =
1575 # web-size-minimum (Int):
1576 # The hard minimum font size.
1580 # web-size-minimum-logical (Int):
1581 # The minimum logical font size that is applied when zooming out.
1583 web-size-minimum-logical =
1585 # web-size-default (Int):
1586 # The default font size for regular text.
1590 # web-size-default-fixed (Int):
1591 # The default font size for fixed-pitch text.
1593 web-size-default-fixed =
1596 # Font used in the keyhint widget.
1597 # Default: 8pt ${_monospace}
1598 keyhint = 8pt ${_monospace}
1600 # messages.error (Font):
1601 # Font used for error messages.
1602 # Default: 8pt ${_monospace}
1603 messages.error = 8pt ${_monospace}
1605 # messages.warning (Font):
1606 # Font used for warning messages.
1607 # Default: 8pt ${_monospace}
1608 messages.warning = 8pt ${_monospace}
1610 # messages.info (Font):
1611 # Font used for info messages.
1612 # Default: 8pt ${_monospace}
1613 messages.info = 8pt ${_monospace}
1616 # Font used for prompts.
1617 # Default: 8pt sans-serif
1618 prompts = 8pt sans-serif