]> git.rmz.io Git - dotfiles.git/blob - qutebrowser/qutebrowser.conf
qutebrowser: update config/bindings
[dotfiles.git] / qutebrowser / qutebrowser.conf
1 # vim: ft=dosini
2
3 # Configfile for qutebrowser.
4 #
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.
8 #
9 # Note that you shouldn't add your own comments, as this file is
10 # regenerated every time the config is saved.
11 #
12 # Interpolation looks like ${value} or ${section:value} and will be
13 # replaced by the respective value.
14 #
15 # Some settings will expand environment variables. Note that, since
16 # interpolation is run first, you will need to escape the $ char as
17 # described below.
18 #
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
21 # an empty value.
22 #
23 # You will need to escape the following values:
24 # - # at the start of the line (at the first position of the key) (\#)
25 # - $ in a value ($$)
26
27 [general]
28 # General/miscellaneous options.
29 #
30 # ignore-case (IgnoreCase):
31 # Whether to find text on a page case-insensitively.
32 # true: Search case-insensitively
33 # false: Search case-sensitively
34 # smart: Search case-sensitively if there are capital chars
35 # Default: smart
36 #
37 # startpage (List of String):
38 # The default page(s) to open at the start, separated by commas.
39 # Default: https://duckduckgo.com
40 #
41 # yank-ignored-url-parameters (List of String):
42 # The URL parameters to strip with :yank url, separated by commas.
43 # Default:
44 # ref,utm_source,utm_medium,utm_campaign,utm_term,utm_content
45 #
46 # default-page (FuzzyUrl):
47 # The page to open if :open -t/-b/-w is used without URL. Use
48 # `about:blank` for a blank page.
49 # Default: ${startpage}
50 #
51 # auto-search (AutoSearch):
52 # Whether to start a search when something else than a URL is
53 # entered.
54 # naive: Use simple/naive check.
55 # dns: Use DNS requests (might be slow!).
56 # false: Never search automatically.
57 # Default: naive
58 #
59 # auto-save-config (Bool):
60 # Whether to save the config automatically on quit.
61 # Valid values: true, false
62 # Default: true
63 #
64 # auto-save-interval (Int):
65 # How often (in milliseconds) to auto-save config/cookies/etc.
66 # Default: 15000
67 #
68 # editor (ShellCommand):
69 # The editor (and arguments) to use for the `open-editor` command.
70 # The arguments get split like in a shell, so you can use `"` or `'`
71 # to quote them.
72 # `{}` gets replaced by the filename of the file to be edited.
73 # Default: gvim -f "{}"
74 #
75 # editor-encoding (Encoding):
76 # Encoding to use for editor.
77 # Default: utf-8
78 #
79 # private-browsing (Bool):
80 # Do not record visited pages in the history or store web page
81 # icons.
82 # Valid values: true, false
83 # Default: false
84 #
85 # developer-extras (Bool):
86 # Enable extra tools for Web developers.
87 # This needs to be enabled for `:inspector` to work and also adds an
88 # _Inspect_ entry to the context menu.
89 # Valid values: true, false
90 # Default: false
91 #
92 # print-element-backgrounds (Bool):
93 # Whether the background color and images are also drawn when the
94 # page is printed.
95 # Valid values: true, false
96 # Default: true
97 #
98 # xss-auditing (Bool):
99 # Whether load requests should be monitored for cross-site scripting
100 # attempts.
101 # Suspicious scripts will be blocked and reported in the inspector's
102 # JavaScript console. Enabling this feature might have an impact on
103 # performance.
104 # Valid values: true, false
105 # Default: false
106 #
107 # site-specific-quirks (Bool):
108 # Enable workarounds for broken sites.
109 # Valid values: true, false
110 # Default: true
111 #
112 # default-encoding (String):
113 # Default encoding to use for websites.
114 # The encoding must be a string describing an encoding such as
115 # _utf-8_, _iso-8859-1_, etc. If left empty a default value will be
116 # used.
117 # Default:
118 #
119 # new-instance-open-target (String):
120 # How to open links in an existing instance if a new one is
121 # launched.
122 # tab: Open a new tab in the existing window and activate the
123 # window.
124 # tab-bg: Open a new background tab in the existing window and
125 # activate the window.
126 # tab-silent: Open a new tab in the existing window without
127 # activating the window.
128 # tab-bg-silent: Open a new background tab in the existing
129 # window without activating the window.
130 # window: Open in a new window.
131 # Default: tab
132 #
133 # new-instance-open-target.window (String):
134 # Which window to choose when opening links as new tabs.
135 # first-opened: Open new tabs in the first (oldest) opened
136 # window.
137 # last-opened: Open new tabs in the last (newest) opened window.
138 # last-focused: Open new tabs in the most recently focused
139 # window.
140 # last-visible: Open new tabs in the most recently visible
141 # window.
142 # Default: last-focused
143 #
144 # log-javascript-console (String):
145 # How to log javascript console messages.
146 # none: Don't log messages.
147 # debug: Log messages with debug level.
148 # info: Log messages with info level.
149 # Default: debug
150 #
151 # save-session (Bool):
152 # Whether to always save the open pages.
153 # Valid values: true, false
154 # Default: false
155 #
156 # session-default-name (SessionName):
157 # The name of the session to save by default, or empty for the last
158 # loaded session.
159 # Default:
160 #
161 # url-incdec-segments (FlagList):
162 # The URL segments where `:navigate increment/decrement` will search
163 # for a number.
164 # Valid values: host, path, query, anchor
165 # Default: path,query
166 ignore-case = smart
167 startpage = https://duckduckgo.com/?t=chakra
168 yank-ignored-url-parameters = ref,utm_source,utm_medium,utm_campaign,utm_term,utm_content
169 default-page = ${startpage}
170 auto-search = naive
171 auto-save-config = true
172 auto-save-interval = 15000
173 editor = urxvt -e vim "{}"
174 editor-encoding = utf-8
175 private-browsing = false
176 developer-extras = true
177 print-element-backgrounds = true
178 xss-auditing = false
179 site-specific-quirks = true
180 default-encoding =
181 new-instance-open-target = tab
182 new-instance-open-target.window = last-focused
183 log-javascript-console = none
184 save-session = true
185 session-default-name =
186 url-incdec-segments = path,query
187
188 [ui]
189 # General options related to the user interface.
190 #
191 # zoom-levels (List of Perc):
192 # The available zoom levels, separated by commas.
193 # Default:
194 # 25%,33%,50%,67%,75%,90%,100%,110%,125%,150%,175%,200%,250%,300%,400%,500%
195 #
196 # default-zoom (Perc):
197 # The default zoom level.
198 # Default: 100%
199 #
200 # downloads-position (VerticalPosition):
201 # Where to show the downloaded files.
202 # Valid values: top, bottom
203 # Default: top
204 #
205 # status-position (VerticalPosition):
206 # The position of the status bar.
207 # Valid values: top, bottom
208 # Default: bottom
209 #
210 # message-timeout (Int):
211 # Time (in ms) to show messages in the statusbar for.
212 # Default: 2000
213 #
214 # message-unfocused (Bool):
215 # Whether to show messages in unfocused windows.
216 # Valid values: true, false
217 # Default: false
218 #
219 # confirm-quit (ConfirmQuit):
220 # Whether to confirm quitting the application.
221 # always: Always show a confirmation.
222 # multiple-tabs: Show a confirmation if multiple tabs are
223 # opened.
224 # downloads: Show a confirmation if downloads are running
225 # never: Never show a confirmation.
226 # Default: never
227 #
228 # zoom-text-only (Bool):
229 # Whether the zoom factor on a frame applies only to the text or to
230 # all content.
231 # Valid values: true, false
232 # Default: false
233 #
234 # frame-flattening (Bool):
235 # Whether to expand each subframe to its contents.
236 # This will flatten all the frames to become one scrollable page.
237 # Valid values: true, false
238 # Default: false
239 #
240 # user-stylesheet (UserStyleSheet):
241 # User stylesheet to use (absolute filename, filename relative to
242 # the config directory or CSS string). Will expand environment
243 # variables.
244 # Default: html > ::-webkit-scrollbar { width: 0px; height: 0px; }
245 #
246 # css-media-type (String):
247 # Set the CSS media type.
248 # Default:
249 #
250 # smooth-scrolling (Bool):
251 # Whether to enable smooth scrolling for webpages.
252 # Valid values: true, false
253 # Default: false
254 #
255 # remove-finished-downloads (Int):
256 # Number of milliseconds to wait before removing finished downloads.
257 # Will not be removed if value is -1.
258 # Default: -1
259 #
260 # hide-statusbar (Bool):
261 # Whether to hide the statusbar unless a message is shown.
262 # Valid values: true, false
263 # Default: false
264 #
265 # statusbar-padding (Padding):
266 # Padding for statusbar (top, bottom, left, right).
267 # Default: 1,1,0,0
268 #
269 # window-title-format (FormatString):
270 # The format to use for the window title. The following placeholders
271 # are defined:
272 # * `{perc}`: The percentage as a string like `[10%]`.
273 # * `{perc_raw}`: The raw percentage, e.g. `10`
274 # * `{title}`: The title of the current web page
275 # * `{title_sep}`: The string ` - ` if a title is set, empty
276 # otherwise.
277 # * `{id}`: The internal window ID of this window.
278 # * `{scroll_pos}`: The page scroll position.
279 # * `{host}`: The host of the current web page.
280 # Default: {perc}{title}{title_sep}qutebrowser
281 #
282 # modal-js-dialog (Bool):
283 # Use standard JavaScript modal dialog for alert() and confirm()
284 # Valid values: true, false
285 # Default: false
286 #
287 # hide-wayland-decoration (Bool):
288 # Hide the window decoration when using wayland (requires restart)
289 # Valid values: true, false
290 # Default: false
291 #
292 # keyhint-blacklist (List of String):
293 # Keychains that shouldn't be shown in the keyhint dialog
294 # Globs are supported, so ';*' will blacklist all keychainsstarting
295 # with ';'. Use '*' to disable keyhints
296 # Default:
297 zoom-levels = 25%,33%,50%,67%,75%,90%,100%,110%,125%,150%,175%,200%,250%,300%,400%,500%
298 default-zoom = 100%
299 downloads-position = top
300 status-position = bottom
301 message-timeout = 2000
302 message-unfocused = false
303 confirm-quit = downloads
304 zoom-text-only = false
305 frame-flattening = false
306 user-stylesheet = html > ::-webkit-scrollbar { width: 0px; height: 0px; }
307 css-media-type =
308 smooth-scrolling = false
309 remove-finished-downloads = -1
310 hide-statusbar = false
311 statusbar-padding = 1,1,0,0
312 window-title-format = {perc}{title}{title_sep}qutebrowser
313 modal-js-dialog = false
314 hide-wayland-decoration = false
315 keyhint-blacklist =
316
317 [network]
318 # Settings related to the network.
319 #
320 # do-not-track (Bool):
321 # Value to send in the `DNT` header.
322 # Valid values: true, false
323 # Default: true
324 #
325 # accept-language (String):
326 # Value to send in the `accept-language` header.
327 # Default: en-US,en
328 #
329 # referer-header (String):
330 # Send the Referer header
331 # always: Always send.
332 # never: Never send; this is not recommended, as some sites may
333 # break.
334 # same-domain: Only send for the same domain. This will still
335 # protect your privacy, but shouldn't break any sites.
336 # Default: same-domain
337 #
338 # user-agent (UserAgent):
339 # User agent to send. Empty to send the default.
340 # Default:
341 #
342 # proxy (Proxy):
343 # The proxy to use.
344 # In addition to the listed values, you can use a `socks://...` or
345 # `http://...` URL.
346 # system: Use the system wide proxy.
347 # none: Don't use any proxy
348 # Default: system
349 #
350 # proxy-dns-requests (Bool):
351 # Whether to send DNS requests over the configured proxy.
352 # Valid values: true, false
353 # Default: true
354 #
355 # ssl-strict (BoolAsk):
356 # Whether to validate SSL handshakes.
357 # Valid values: true, false, ask
358 # Default: ask
359 #
360 # dns-prefetch (Bool):
361 # Whether to try to pre-fetch DNS entries to speed up browsing.
362 # Valid values: true, false
363 # Default: true
364 #
365 # custom-headers (HeaderDict):
366 # Set custom headers for qutebrowser HTTP requests.
367 # Default:
368 do-not-track = true
369 accept-language = en-US,en,de,fr
370 referer-header = same-domain
371 user-agent =
372 proxy = system
373 proxy-dns-requests = true
374 ssl-strict = ask
375 dns-prefetch = true
376 custom-headers =
377
378 [completion]
379 # Options related to completion and command history.
380 #
381 # show (String):
382 # When to show the autocompletion window.
383 # always: Whenever a completion is available.
384 # auto: Whenever a completion is requested.
385 # never: Never.
386 # Default: always
387 #
388 # download-path-suggestion (String):
389 # What to display in the download filename input.
390 # path: Show only the download path.
391 # filename: Show only download filename.
392 # both: Show download path and filename.
393 # Default: path
394 #
395 # timestamp-format (TimestampTemplate):
396 # How to format timestamps (e.g. for history)
397 # Default: %Y-%m-%d
398 #
399 # height (PercOrInt):
400 # The height of the completion, in px or as percentage of the
401 # window.
402 # Default: 50%
403 #
404 # cmd-history-max-items (Int):
405 # How many commands to save in the command history.
406 # 0: no history / -1: unlimited
407 # Default: 100
408 #
409 # web-history-max-items (Int):
410 # How many URLs to show in the web history.
411 # 0: no history / -1: unlimited
412 # Default: 1000
413 #
414 # quick-complete (Bool):
415 # Whether to move on to the next part when there's only one possible
416 # completion left.
417 # Valid values: true, false
418 # Default: true
419 #
420 # shrink (Bool):
421 # Whether to shrink the completion to be smaller than the configured
422 # size if there are no scrollbars.
423 # Valid values: true, false
424 # Default: false
425 #
426 # scrollbar-width (Int):
427 # Width of the scrollbar in the completion window (in px).
428 # Default: 12
429 #
430 # scrollbar-padding (Int):
431 # Padding of scrollbar handle in completion window (in px).
432 # Default: 2
433 show = always
434 download-path-suggestion = path
435 timestamp-format = %Y-%m-%d
436 height = 150
437 cmd-history-max-items = 100
438 web-history-max-items = 1000
439 quick-complete = false
440 shrink = true
441 scrollbar-width = 12
442 scrollbar-padding = 2
443
444 [input]
445 # Options related to input modes.
446 #
447 # timeout (Int):
448 # Timeout (in milliseconds) for ambiguous key bindings.
449 # If the current input forms both a complete match and a partial
450 # match, the complete match will be executed after this time.
451 # Default: 500
452 #
453 # partial-timeout (Int):
454 # Timeout (in milliseconds) for partially typed key bindings.
455 # If the current input forms only partial matches, the keystring
456 # will be cleared after this time.
457 # Default: 5000
458 #
459 # insert-mode-on-plugins (Bool):
460 # Whether to switch to insert mode when clicking flash and other
461 # plugins.
462 # Valid values: true, false
463 # Default: false
464 #
465 # auto-leave-insert-mode (Bool):
466 # Whether to leave insert mode if a non-editable element is clicked.
467 # Valid values: true, false
468 # Default: true
469 #
470 # auto-insert-mode (Bool):
471 # Whether to automatically enter insert mode if an editable element
472 # is focused after page load.
473 # Valid values: true, false
474 # Default: false
475 #
476 # forward-unbound-keys (String):
477 # Whether to forward unbound keys to the webview in normal mode.
478 # all: Forward all unbound keys.
479 # auto: Forward unbound non-alphanumeric keys.
480 # none: Don't forward any keys.
481 # Default: auto
482 #
483 # spatial-navigation (Bool):
484 # Enables or disables the Spatial Navigation feature.
485 # Spatial navigation consists in the ability to navigate between
486 # focusable elements in a Web page, such as hyperlinks and form
487 # controls, by using Left, Right, Up and Down arrow keys. For
488 # example, if a user presses the Right key, heuristics determine
489 # whether there is an element he might be trying to reach towards
490 # the right and which element he probably wants.
491 # Valid values: true, false
492 # Default: false
493 #
494 # links-included-in-focus-chain (Bool):
495 # Whether hyperlinks should be included in the keyboard focus chain.
496 # Valid values: true, false
497 # Default: true
498 #
499 # rocker-gestures (Bool):
500 # Whether to enable Opera-like mouse rocker gestures. This disables
501 # the context menu.
502 # Valid values: true, false
503 # Default: false
504 #
505 # mouse-zoom-divider (Int):
506 # How much to divide the mouse wheel movements to translate them
507 # into zoom increments.
508 # Default: 512
509 timeout = 500
510 partial-timeout = 1000
511 insert-mode-on-plugins = false
512 auto-leave-insert-mode = true
513 auto-insert-mode = false
514 forward-unbound-keys = auto
515 spatial-navigation = false
516 links-included-in-focus-chain = true
517 rocker-gestures = false
518 mouse-zoom-divider = 512
519
520 [tabs]
521 # Configuration of the tab bar.
522 #
523 # background-tabs (Bool):
524 # Whether to open new tabs (middleclick/ctrl+click) in background.
525 # Valid values: true, false
526 # Default: false
527 #
528 # select-on-remove (SelectOnRemove):
529 # Which tab to select when the focused tab is removed.
530 # left: Select the tab on the left.
531 # right: Select the tab on the right.
532 # previous: Select the previously selected tab.
533 # Default: right
534 #
535 # new-tab-position (NewTabPosition):
536 # How new tabs are positioned.
537 # left: On the left of the current tab.
538 # right: On the right of the current tab.
539 # first: At the left end.
540 # last: At the right end.
541 # Default: right
542 #
543 # new-tab-position-explicit (NewTabPosition):
544 # How new tabs opened explicitly are positioned.
545 # left: On the left of the current tab.
546 # right: On the right of the current tab.
547 # first: At the left end.
548 # last: At the right end.
549 # Default: last
550 #
551 # last-close (String):
552 # Behavior when the last tab is closed.
553 # ignore: Don't do anything.
554 # blank: Load a blank page.
555 # startpage: Load the start page.
556 # default-page: Load the default page.
557 # close: Close the window.
558 # Default: ignore
559 #
560 # show (String):
561 # When to show the tab bar
562 # always: Always show the tab bar.
563 # never: Always hide the tab bar.
564 # multiple: Hide the tab bar if only one tab is open.
565 # switching: Show the tab bar when switching tabs.
566 # Default: always
567 #
568 # show-switching-delay (Int):
569 # Time to show the tab bar before hiding it when tabs->show is set
570 # to 'switching'.
571 # Default: 800
572 #
573 # wrap (Bool):
574 # Whether to wrap when changing tabs.
575 # Valid values: true, false
576 # Default: true
577 #
578 # movable (Bool):
579 # Whether tabs should be movable.
580 # Valid values: true, false
581 # Default: true
582 #
583 # close-mouse-button (String):
584 # On which mouse button to close tabs.
585 # right: Close tabs on right-click.
586 # middle: Close tabs on middle-click.
587 # none: Don't close tabs using the mouse.
588 # Default: middle
589 #
590 # position (Position):
591 # The position of the tab bar.
592 # Valid values: top, bottom, left, right
593 # Default: top
594 #
595 # show-favicons (Bool):
596 # Whether to show favicons in the tab bar.
597 # Valid values: true, false
598 # Default: true
599 #
600 # width (PercOrInt):
601 # The width of the tab bar if it's vertical, in px or as percentage
602 # of the window.
603 # Default: 20%
604 #
605 # indicator-width (Int):
606 # Width of the progress indicator (0 to disable).
607 # Default: 3
608 #
609 # tabs-are-windows (Bool):
610 # Whether to open windows instead of tabs.
611 # Valid values: true, false
612 # Default: false
613 #
614 # title-format (FormatString):
615 # The format to use for the tab title. The following placeholders
616 # are defined:
617 # * `{perc}`: The percentage as a string like `[10%]`.
618 # * `{perc_raw}`: The raw percentage, e.g. `10`
619 # * `{title}`: The title of the current web page
620 # * `{title_sep}`: The string ` - ` if a title is set, empty
621 # otherwise.
622 # * `{index}`: The index of this tab.
623 # * `{id}`: The internal tab ID of this tab.
624 # * `{scroll_pos}`: The page scroll position.
625 # * `{host}`: The host of the current web page.
626 # Default: {index}: {title}
627 #
628 # title-alignment (TextAlignment):
629 # Alignment of the text inside of tabs
630 # Valid values: left, right, center
631 # Default: left
632 #
633 # mousewheel-tab-switching (Bool):
634 # Switch between tabs using the mouse wheel.
635 # Valid values: true, false
636 # Default: true
637 #
638 # padding (Padding):
639 # Padding for tabs (top, bottom, left, right).
640 # Default: 0,0,5,5
641 #
642 # indicator-padding (Padding):
643 # Padding for indicators (top, bottom, left, right).
644 # Default: 2,2,0,4
645 background-tabs = false
646 select-on-remove = left
647 new-tab-position = right
648 new-tab-position-explicit = right
649 last-close = ignore
650 show = always
651 show-switching-delay = 800
652 wrap = true
653 movable = true
654 close-mouse-button = middle
655 position = top
656 show-favicons = true
657 width = 20%
658 indicator-width = 3
659 tabs-are-windows = false
660 title-format = {index}: {title}
661 title-alignment = left
662 mousewheel-tab-switching = true
663 padding = 0,0,5,5
664 indicator-padding = 2,2,0,4
665
666 [storage]
667 # Settings related to cache and storage.
668 #
669 # download-directory (Directory):
670 # The directory to save downloads to. An empty value selects a
671 # sensible os-specific default. Will expand environment variables.
672 # Default:
673 #
674 # prompt-download-directory (Bool):
675 # Whether to prompt the user for the download location.
676 # If set to false, 'download-directory' will be used.
677 # Valid values: true, false
678 # Default: true
679 #
680 # remember-download-directory (Bool):
681 # Whether to remember the last used download directory.
682 # Valid values: true, false
683 # Default: true
684 #
685 # maximum-pages-in-cache (Int):
686 # The maximum number of pages to hold in the global memory page
687 # cache.
688 # The Page Cache allows for a nicer user experience when navigating
689 # forth or back to pages in the forward/back history, by pausing and
690 # resuming up to _n_ pages.
691 # For more information about the feature, please refer to:
692 # http://webkit.org/blog/427/webkit-page-cache-i-the-basics/
693 # Default:
694 #
695 # object-cache-capacities (List of WebKitBytes):
696 # The capacities for the global memory cache for dead objects such
697 # as stylesheets or scripts. Syntax: cacheMinDeadCapacity,
698 # cacheMaxDead, totalCapacity.
699 # The _cacheMinDeadCapacity_ specifies the minimum number of bytes
700 # that dead objects should consume when the cache is under pressure.
701 # _cacheMaxDead_ is the maximum number of bytes that dead objects
702 # should consume when the cache is *not* under pressure.
703 # _totalCapacity_ specifies the maximum number of bytes that the
704 # cache should consume *overall*.
705 # Default:
706 #
707 # offline-storage-default-quota (WebKitBytes):
708 # Default quota for new offline storage databases.
709 # Default:
710 #
711 # offline-web-application-cache-quota (WebKitBytes):
712 # Quota for the offline web application cache.
713 # Default:
714 #
715 # offline-storage-database (Bool):
716 # Whether support for the HTML 5 offline storage feature is enabled.
717 # Valid values: true, false
718 # Default: true
719 #
720 # offline-web-application-storage (Bool):
721 # Whether support for the HTML 5 web application cache feature is
722 # enabled.
723 # An application cache acts like an HTTP cache in some sense. For
724 # documents that use the application cache via JavaScript, the
725 # loader engine will first ask the application cache for the
726 # contents, before hitting the network.
727 # The feature is described in details at:
728 # http://dev.w3.org/html5/spec/Overview.html#appcache
729 # Valid values: true, false
730 # Default: true
731 #
732 # local-storage (Bool):
733 # Whether support for the HTML 5 local storage feature is enabled.
734 # Valid values: true, false
735 # Default: true
736 #
737 # cache-size (Int):
738 # Size of the HTTP network cache.
739 # Default: 52428800
740 download-directory = ~/downloads
741 prompt-download-directory = true
742 remember-download-directory = true
743 maximum-pages-in-cache =
744 object-cache-capacities =
745 offline-storage-default-quota =
746 offline-web-application-cache-quota =
747 offline-storage-database = true
748 offline-web-application-storage = true
749 local-storage = true
750 cache-size = 52428800
751
752 [content]
753 # Loaded plugins/scripts and allowed actions.
754 #
755 # allow-images (Bool):
756 # Whether images are automatically loaded in web pages.
757 # Valid values: true, false
758 # Default: true
759 #
760 # allow-javascript (Bool):
761 # Enables or disables the running of JavaScript programs.
762 # Valid values: true, false
763 # Default: true
764 #
765 # allow-plugins (Bool):
766 # Enables or disables plugins in Web pages.
767 # Qt plugins with a mimetype such as "application/x-qt-plugin" are
768 # not affected by this setting.
769 # Valid values: true, false
770 # Default: false
771 #
772 # webgl (Bool):
773 # Enables or disables WebGL. For QtWebEngine, Qt/PyQt >= 5.7 is
774 # required for this setting.
775 # Valid values: true, false
776 # Default: false
777 #
778 # css-regions (Bool):
779 # Enable or disable support for CSS regions.
780 # Valid values: true, false
781 # Default: true
782 #
783 # hyperlink-auditing (Bool):
784 # Enable or disable hyperlink auditing (<a ping>).
785 # Valid values: true, false
786 # Default: false
787 #
788 # geolocation (BoolAsk):
789 # Allow websites to request geolocations.
790 # Valid values: true, false, ask
791 # Default: ask
792 #
793 # notifications (BoolAsk):
794 # Allow websites to show notifications.
795 # Valid values: true, false, ask
796 # Default: ask
797 #
798 # javascript-can-open-windows-automatically (Bool):
799 # Whether JavaScript programs can open new windows without user
800 # interaction.
801 # Valid values: true, false
802 # Default: false
803 #
804 # javascript-can-close-windows (Bool):
805 # Whether JavaScript programs can close windows.
806 # Valid values: true, false
807 # Default: false
808 #
809 # javascript-can-access-clipboard (Bool):
810 # Whether JavaScript programs can read or write to the clipboard.
811 # Valid values: true, false
812 # Default: false
813 #
814 # ignore-javascript-prompt (Bool):
815 # Whether all javascript prompts should be ignored.
816 # Valid values: true, false
817 # Default: false
818 #
819 # ignore-javascript-alert (Bool):
820 # Whether all javascript alerts should be ignored.
821 # Valid values: true, false
822 # Default: false
823 #
824 # local-content-can-access-remote-urls (Bool):
825 # Whether locally loaded documents are allowed to access remote
826 # urls.
827 # Valid values: true, false
828 # Default: false
829 #
830 # local-content-can-access-file-urls (Bool):
831 # Whether locally loaded documents are allowed to access other local
832 # urls.
833 # Valid values: true, false
834 # Default: true
835 #
836 # cookies-accept (String):
837 # Control which cookies to accept.
838 # all: Accept all cookies.
839 # no-3rdparty: Accept cookies from the same origin only.
840 # no-unknown-3rdparty: Accept cookies from the same origin only,
841 # unless a cookie is already set for the domain.
842 # never: Don't accept cookies at all.
843 # Default: no-3rdparty
844 #
845 # cookies-store (Bool):
846 # Whether to store cookies.
847 # Valid values: true, false
848 # Default: true
849 #
850 # host-block-lists (List of Url):
851 # List of URLs of lists which contain hosts to block.
852 # The file can be in one of the following formats:
853 # - An '/etc/hosts'-like file
854 # - One host per line
855 # - A zip-file of any of the above, with either only one file, or a
856 # file named 'hosts' (with any extension).
857 # Default:
858 # 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
859 #
860 # host-blocking-enabled (Bool):
861 # Whether host blocking is enabled.
862 # Valid values: true, false
863 # Default: true
864 #
865 # host-blocking-whitelist (List of String):
866 # List of domains that should always be loaded, despite being
867 # ad-blocked.
868 # Domains may contain * and ? wildcards and are otherwise required
869 # to exactly match the requested domain.
870 # Local domains are always exempt from hostblocking.
871 # Default: piwik.org
872 #
873 # enable-pdfjs (Bool):
874 # Enable pdf.js to view PDF files in the browser.
875 # Note that the files can still be downloaded by clicking the
876 # download button in the pdf.js viewer.
877 # Valid values: true, false
878 # Default: false
879 allow-images = true
880 allow-javascript = true
881 allow-plugins = false
882 webgl = true
883 css-regions = true
884 hyperlink-auditing = false
885 geolocation = ask
886 notifications = ask
887 javascript-can-open-windows-automatically = false
888 javascript-can-close-windows = false
889 javascript-can-access-clipboard = false
890 ignore-javascript-prompt = false
891 ignore-javascript-alert = false
892 local-content-can-access-remote-urls = false
893 local-content-can-access-file-urls = true
894 cookies-accept = no-3rdparty
895 cookies-store = true
896 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
897 host-blocking-enabled = true
898 host-blocking-whitelist = piwik.org
899 enable-pdfjs = false
900
901 [hints]
902 # Hinting settings.
903 #
904 # border (String):
905 # CSS border value for hints.
906 # Default: 1px solid #E3BE23
907 #
908 # mode (String):
909 # Mode to use for hints.
910 # number: Use numeric hints.
911 # letter: Use the chars in the hints -> chars setting.
912 # word: Use hints words based on the html elements and the extra
913 # words.
914 # Default: letter
915 #
916 # chars (UniqueCharString):
917 # Chars used for hint strings.
918 # Default: asdfghjkl
919 #
920 # min-chars (Int):
921 # Minimum number of chars used for hint strings.
922 # Default: 1
923 #
924 # scatter (Bool):
925 # Whether to scatter hint key chains (like Vimium) or not (like
926 # dwb). Ignored for number hints.
927 # Valid values: true, false
928 # Default: true
929 #
930 # uppercase (Bool):
931 # Make chars in hint strings uppercase.
932 # Valid values: true, false
933 # Default: false
934 #
935 # dictionary (File):
936 # The dictionary file to be used by the word hints.
937 # Default: /usr/share/dict/words
938 #
939 # auto-follow (String):
940 # Controls when a hint can be automatically followed without the
941 # user pressing Enter.
942 # always: Auto-follow whenever there is only a single hint on a
943 # page.
944 # unique-match: Auto-follow whenever there is a unique non-empty
945 # match in either the hint string (word mode) or filter (number
946 # mode).
947 # full-match: Follow the hint when the user typed the whole hint
948 # (letter, word or number mode) or the element's text (only in
949 # number mode).
950 # never: The user will always need to press Enter to follow a
951 # hint.
952 # Default: unique-match
953 #
954 # auto-follow-timeout (Int):
955 # A timeout (in milliseconds) to inhibit normal-mode key bindings
956 # after a successful auto-follow.
957 # Default: 0
958 #
959 # next-regexes (List of Regex):
960 # A comma-separated list of regexes to use for 'next' links.
961 # Default:
962 # \bnext\b,\bmore\b,\bnewer\b,\b[>→≫]\b,\b(>>|»)\b,\bcontinue\b
963 #
964 # prev-regexes (List of Regex):
965 # A comma-separated list of regexes to use for 'prev' links.
966 # Default: \bprev(ious)?\b,\bback\b,\bolder\b,\b[<←≪]\b,\b(<<|«)\b
967 #
968 # find-implementation (String):
969 # Which implementation to use to find elements to hint.
970 # javascript: Better but slower
971 # python: Slightly worse but faster
972 # Default: python
973 #
974 # hide-unmatched-rapid-hints (Bool):
975 # Controls hiding unmatched hints in rapid mode.
976 # Valid values: true, false
977 # Default: true
978 border = 1px solid #E3BE23
979 mode = letter
980 chars = aoeuidhtns
981 min-chars = 2
982 scatter = true
983 uppercase = true
984 dictionary = /usr/share/dict/words
985 auto-follow = true
986 auto-follow-timeout = 0
987 next-regexes = \bnext\b,\bmore\b,\bnewer\b,\b[>→≫]\b,\b(>>|»)\b,\bcontinue\b
988 prev-regexes = \bprev(ious)?\b,\bback\b,\bolder\b,\b[<←≪]\b,\b(<<|«)\b
989 find-implementation = javascript
990 hide-unmatched-rapid-hints = true
991
992 [searchengines]
993 # Definitions of search engines which can be used via the address bar.
994 # The searchengine named `DEFAULT` is used when `general -> auto-search`
995 # is true and something else than a URL was entered to be opened. Other
996 # search engines can be used by prepending the search engine name to the
997 # search term, e.g. `:open google qutebrowser`. The string `{}` will be
998 # replaced by the search term, use `{{` and `}}` for literal `{`/`}`
999 # signs.
1000 DEFAULT = ${duckduckgo}
1001 duckduckgo = https://duckduckgo.com/?t=chakra&q={}
1002 ddg = ${duckduckgo}
1003 google = https://encrypted.google.com/search?q={}
1004 g = ${google}
1005 wikipedia = http://en.wikipedia.org/w/index.php?title=Special:Search&search={}
1006 wiki = ${wikipedia}
1007 pcl = http://docs.pointclouds.org/trunk/search.php?query={}
1008 std = http://en.cppreference.com/mwiki/index.php?title=Special%3ASearch&search={}
1009 cv = http://docs.opencv.org/3.1.0/index.html#gsc.tab=0&gsc.ref=more%3A3.1&gsc.q={}
1010
1011 [aliases]
1012 # Aliases for commands.
1013 # By default, no aliases are defined. Example which adds a new command
1014 # `:qtb` to open qutebrowsers website:
1015 # `qtb = open http://www.qutebrowser.org/`
1016 quit = close
1017 q = close
1018 exit = quit
1019
1020 [colors]
1021 # Colors used in the UI.
1022 # A value can be in one of the following format:
1023 # * `#RGB`/`#RRGGBB`/`#RRRGGGBBB`/`#RRRRGGGGBBBB`
1024 # * An SVG color name as specified in http://www.w3.org/TR/SVG/types.html#ColorKeywords[the W3C specification].
1025 # * transparent (no color)
1026 # * `rgb(r, g, b)` / `rgba(r, g, b, a)` (values 0-255 or percentages)
1027 # * `hsv(h, s, v)` / `hsva(h, s, v, a)` (values 0-255, hue 0-359)
1028 # * A gradient as explained in http://doc.qt.io/qt-5/stylesheet-reference.html#list-of-property-types[the Qt documentation] under ``Gradient''.
1029 # A *.system value determines the color system to use for color
1030 # interpolation between similarly-named *.start and *.stop entries,
1031 # regardless of how they are defined in the options. Valid values are
1032 # 'rgb', 'hsv', and 'hsl'.
1033 # 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].
1034 #
1035 # completion.fg (QtColor):
1036 # Text color of the completion widget.
1037 # Default: white
1038 #
1039 # completion.bg (QssColor):
1040 # Background color of the completion widget.
1041 # Default: #333333
1042 #
1043 # completion.alternate-bg (QssColor):
1044 # Alternating background color of the completion widget.
1045 # Default: #444444
1046 #
1047 # completion.category.fg (QtColor):
1048 # Foreground color of completion widget category headers.
1049 # Default: white
1050 #
1051 # completion.category.bg (QssColor):
1052 # Background color of the completion widget category headers.
1053 # Default: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #888888,
1054 # stop:1 #505050)
1055 #
1056 # completion.category.border.top (QssColor):
1057 # Top border color of the completion widget category headers.
1058 # Default: black
1059 #
1060 # completion.category.border.bottom (QssColor):
1061 # Bottom border color of the completion widget category headers.
1062 # Default: ${completion.category.border.top}
1063 #
1064 # completion.item.selected.fg (QtColor):
1065 # Foreground color of the selected completion item.
1066 # Default: black
1067 #
1068 # completion.item.selected.bg (QssColor):
1069 # Background color of the selected completion item.
1070 # Default: #e8c000
1071 #
1072 # completion.item.selected.border.top (QssColor):
1073 # Top border color of the completion widget category headers.
1074 # Default: #bbbb00
1075 #
1076 # completion.item.selected.border.bottom (QssColor):
1077 # Bottom border color of the selected completion item.
1078 # Default: ${completion.item.selected.border.top}
1079 #
1080 # completion.match.fg (QssColor):
1081 # Foreground color of the matched text in the completion.
1082 # Default: #ff4444
1083 #
1084 # completion.scrollbar.fg (QssColor):
1085 # Color of the scrollbar handle in completion view.
1086 # Default: ${completion.fg}
1087 #
1088 # completion.scrollbar.bg (QssColor):
1089 # Color of the scrollbar in completion view
1090 # Default: ${completion.bg}
1091 #
1092 # statusbar.fg (QssColor):
1093 # Foreground color of the statusbar.
1094 # Default: white
1095 #
1096 # statusbar.bg (QssColor):
1097 # Background color of the statusbar.
1098 # Default: black
1099 #
1100 # statusbar.fg.error (QssColor):
1101 # Foreground color of the statusbar if there was an error.
1102 # Default: ${statusbar.fg}
1103 #
1104 # statusbar.bg.error (QssColor):
1105 # Background color of the statusbar if there was an error.
1106 # Default: red
1107 #
1108 # statusbar.fg.warning (QssColor):
1109 # Foreground color of the statusbar if there is a warning.
1110 # Default: ${statusbar.fg}
1111 #
1112 # statusbar.bg.warning (QssColor):
1113 # Background color of the statusbar if there is a warning.
1114 # Default: darkorange
1115 #
1116 # statusbar.fg.prompt (QssColor):
1117 # Foreground color of the statusbar if there is a prompt.
1118 # Default: ${statusbar.fg}
1119 #
1120 # statusbar.bg.prompt (QssColor):
1121 # Background color of the statusbar if there is a prompt.
1122 # Default: darkblue
1123 #
1124 # statusbar.fg.insert (QssColor):
1125 # Foreground color of the statusbar in insert mode.
1126 # Default: ${statusbar.fg}
1127 #
1128 # statusbar.bg.insert (QssColor):
1129 # Background color of the statusbar in insert mode.
1130 # Default: darkgreen
1131 #
1132 # statusbar.fg.command (QssColor):
1133 # Foreground color of the statusbar in command mode.
1134 # Default: ${statusbar.fg}
1135 #
1136 # statusbar.bg.command (QssColor):
1137 # Background color of the statusbar in command mode.
1138 # Default: ${statusbar.bg}
1139 #
1140 # statusbar.fg.caret (QssColor):
1141 # Foreground color of the statusbar in caret mode.
1142 # Default: ${statusbar.fg}
1143 #
1144 # statusbar.bg.caret (QssColor):
1145 # Background color of the statusbar in caret mode.
1146 # Default: purple
1147 #
1148 # statusbar.fg.caret-selection (QssColor):
1149 # Foreground color of the statusbar in caret mode with a selection
1150 # Default: ${statusbar.fg}
1151 #
1152 # statusbar.bg.caret-selection (QssColor):
1153 # Background color of the statusbar in caret mode with a selection
1154 # Default: #a12dff
1155 #
1156 # statusbar.progress.bg (QssColor):
1157 # Background color of the progress bar.
1158 # Default: white
1159 #
1160 # statusbar.url.fg (QssColor):
1161 # Default foreground color of the URL in the statusbar.
1162 # Default: ${statusbar.fg}
1163 #
1164 # statusbar.url.fg.success (QssColor):
1165 # Foreground color of the URL in the statusbar on successful load
1166 # (http).
1167 # Default: white
1168 #
1169 # statusbar.url.fg.success.https (QssColor):
1170 # Foreground color of the URL in the statusbar on successful load
1171 # (https).
1172 # Default: lime
1173 #
1174 # statusbar.url.fg.error (QssColor):
1175 # Foreground color of the URL in the statusbar on error.
1176 # Default: orange
1177 #
1178 # statusbar.url.fg.warn (QssColor):
1179 # Foreground color of the URL in the statusbar when there's a
1180 # warning.
1181 # Default: yellow
1182 #
1183 # statusbar.url.fg.hover (QssColor):
1184 # Foreground color of the URL in the statusbar for hovered links.
1185 # Default: aqua
1186 #
1187 # tabs.fg.odd (QtColor):
1188 # Foreground color of unselected odd tabs.
1189 # Default: white
1190 #
1191 # tabs.bg.odd (QtColor):
1192 # Background color of unselected odd tabs.
1193 # Default: grey
1194 #
1195 # tabs.fg.even (QtColor):
1196 # Foreground color of unselected even tabs.
1197 # Default: white
1198 #
1199 # tabs.bg.even (QtColor):
1200 # Background color of unselected even tabs.
1201 # Default: darkgrey
1202 #
1203 # tabs.fg.selected.odd (QtColor):
1204 # Foreground color of selected odd tabs.
1205 # Default: white
1206 #
1207 # tabs.bg.selected.odd (QtColor):
1208 # Background color of selected odd tabs.
1209 # Default: black
1210 #
1211 # tabs.fg.selected.even (QtColor):
1212 # Foreground color of selected even tabs.
1213 # Default: ${tabs.fg.selected.odd}
1214 #
1215 # tabs.bg.selected.even (QtColor):
1216 # Background color of selected even tabs.
1217 # Default: ${tabs.bg.selected.odd}
1218 #
1219 # tabs.bg.bar (QtColor):
1220 # Background color of the tab bar.
1221 # Default: #555555
1222 #
1223 # tabs.indicator.start (QtColor):
1224 # Color gradient start for the tab indicator.
1225 # Default: #0000aa
1226 #
1227 # tabs.indicator.stop (QtColor):
1228 # Color gradient end for the tab indicator.
1229 # Default: #00aa00
1230 #
1231 # tabs.indicator.error (QtColor):
1232 # Color for the tab indicator on errors..
1233 # Default: #ff0000
1234 #
1235 # tabs.indicator.system (ColorSystem):
1236 # Color gradient interpolation system for the tab indicator.
1237 # rgb: Interpolate in the RGB color system.
1238 # hsv: Interpolate in the HSV color system.
1239 # hsl: Interpolate in the HSL color system.
1240 # none: Don't show a gradient.
1241 # Default: rgb
1242 #
1243 # hints.fg (QssColor):
1244 # Font color for hints.
1245 # Default: black
1246 #
1247 # hints.bg (QssColor):
1248 # Background color for hints. Note that you can use a `rgba(...)`
1249 # value for transparency.
1250 # Default: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 rgba(255,
1251 # 247, 133, 0.8), stop:1 rgba(255, 197, 66, 0.8))
1252 #
1253 # hints.fg.match (QssColor):
1254 # Font color for the matched part of hints.
1255 # Default: green
1256 #
1257 # downloads.bg.bar (QssColor):
1258 # Background color for the download bar.
1259 # Default: black
1260 #
1261 # downloads.fg.start (QtColor):
1262 # Color gradient start for download text.
1263 # Default: white
1264 #
1265 # downloads.bg.start (QtColor):
1266 # Color gradient start for download backgrounds.
1267 # Default: #0000aa
1268 #
1269 # downloads.fg.stop (QtColor):
1270 # Color gradient end for download text.
1271 # Default: ${downloads.fg.start}
1272 #
1273 # downloads.bg.stop (QtColor):
1274 # Color gradient stop for download backgrounds.
1275 # Default: #00aa00
1276 #
1277 # downloads.fg.system (ColorSystem):
1278 # Color gradient interpolation system for download text.
1279 # rgb: Interpolate in the RGB color system.
1280 # hsv: Interpolate in the HSV color system.
1281 # hsl: Interpolate in the HSL color system.
1282 # none: Don't show a gradient.
1283 # Default: rgb
1284 #
1285 # downloads.bg.system (ColorSystem):
1286 # Color gradient interpolation system for download backgrounds.
1287 # rgb: Interpolate in the RGB color system.
1288 # hsv: Interpolate in the HSV color system.
1289 # hsl: Interpolate in the HSL color system.
1290 # none: Don't show a gradient.
1291 # Default: rgb
1292 #
1293 # downloads.fg.error (QtColor):
1294 # Foreground color for downloads with errors.
1295 # Default: white
1296 #
1297 # downloads.bg.error (QtColor):
1298 # Background color for downloads with errors.
1299 # Default: red
1300 #
1301 # webpage.bg (QtColor):
1302 # Background color for webpages if unset (or empty to use the
1303 # theme's color)
1304 # Default: white
1305 #
1306 # keyhint.fg (QssColor):
1307 # Text color for the keyhint widget.
1308 # Default: #FFFFFF
1309 #
1310 # keyhint.fg.suffix (CssColor):
1311 # Highlight color for keys to complete the current keychain
1312 # Default: #FFFF00
1313 #
1314 # keyhint.bg (QssColor):
1315 # Background color of the keyhint widget.
1316 # Default: rgba(0, 0, 0, 80%)
1317 completion.fg = white
1318 completion.bg = #333333
1319 completion.alternate-bg = #444444
1320 completion.category.fg = white
1321 completion.category.bg = qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #888888, stop:1 #505050)
1322 completion.category.border.top = black
1323 completion.category.border.bottom = ${completion.category.border.top}
1324 completion.item.selected.fg = black
1325 completion.item.selected.bg = #e8c000
1326 completion.item.selected.border.top = #bbbb00
1327 completion.item.selected.border.bottom = ${completion.item.selected.border.top}
1328 completion.match.fg = #ff4444
1329 completion.scrollbar.fg = ${completion.fg}
1330 completion.scrollbar.bg = ${completion.bg}
1331 statusbar.fg = white
1332 statusbar.bg = black
1333 statusbar.fg.error = ${statusbar.fg}
1334 statusbar.bg.error = red
1335 statusbar.fg.warning = ${statusbar.fg}
1336 statusbar.bg.warning = darkorange
1337 statusbar.fg.prompt = ${statusbar.fg}
1338 statusbar.bg.prompt = darkblue
1339 statusbar.fg.insert = ${statusbar.fg}
1340 statusbar.bg.insert = darkgreen
1341 statusbar.fg.command = ${statusbar.fg}
1342 statusbar.bg.command = ${statusbar.bg}
1343 statusbar.fg.caret = ${statusbar.fg}
1344 statusbar.bg.caret = purple
1345 statusbar.fg.caret-selection = ${statusbar.fg}
1346 statusbar.bg.caret-selection = #a12dff
1347 statusbar.progress.bg = white
1348 statusbar.url.fg = ${statusbar.fg}
1349 statusbar.url.fg.success = white
1350 statusbar.url.fg.success.https = lime
1351 statusbar.url.fg.error = orange
1352 statusbar.url.fg.warn = yellow
1353 statusbar.url.fg.hover = aqua
1354 tabs.fg.odd = white
1355 tabs.bg.odd = grey
1356 tabs.fg.even = white
1357 tabs.bg.even = darkgrey
1358 tabs.fg.selected.odd = white
1359 tabs.bg.selected.odd = black
1360 tabs.fg.selected.even = ${tabs.fg.selected.odd}
1361 tabs.bg.selected.even = ${tabs.bg.selected.odd}
1362 tabs.bg.bar = #555555
1363 tabs.indicator.start = #0000aa
1364 tabs.indicator.stop = #00aa00
1365 tabs.indicator.error = #ff0000
1366 tabs.indicator.system = rgb
1367 hints.fg = black
1368 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))
1369 hints.fg.match = green
1370 downloads.bg.bar = black
1371 downloads.fg.start = white
1372 downloads.bg.start = #0000aa
1373 downloads.fg.stop = ${downloads.fg.start}
1374 downloads.bg.stop = #00aa00
1375 downloads.fg.system = rgb
1376 downloads.bg.system = rgb
1377 downloads.fg.error = white
1378 downloads.bg.error = red
1379 webpage.bg = white
1380 keyhint.fg = #FFFFFF
1381 keyhint.fg.suffix = #FFFF00
1382 keyhint.bg = rgba(0, 0, 0, 80%)
1383
1384 [fonts]
1385 # Fonts used for the UI, with optional style/weight/size.
1386 # * Style: `normal`/`italic`/`oblique`
1387 # * Weight: `normal`, `bold`, `100`..`900`
1388 # * Size: _number_ `px`/`pt`
1389 #
1390 # _monospace (Font):
1391 # Default monospace fonts.
1392 # Default: Terminus, Monospace, "DejaVu Sans Mono", Monaco,
1393 # "Bitstream Vera Sans Mono", "Andale Mono", "Courier New", Courier,
1394 # "Liberation Mono", monospace, Fixed, Consolas, Terminal
1395 #
1396 # completion (Font):
1397 # Font used in the completion widget.
1398 # Default: 8pt ${_monospace}
1399 #
1400 # completion.category (Font):
1401 # Font used in the completion categories.
1402 # Default: bold ${completion}
1403 #
1404 # tabbar (QtFont):
1405 # Font used in the tab bar.
1406 # Default: 8pt ${_monospace}
1407 #
1408 # statusbar (Font):
1409 # Font used in the statusbar.
1410 # Default: 8pt ${_monospace}
1411 #
1412 # downloads (Font):
1413 # Font used for the downloadbar.
1414 # Default: 8pt ${_monospace}
1415 #
1416 # hints (Font):
1417 # Font used for the hints.
1418 # Default: bold 13px ${_monospace}
1419 #
1420 # debug-console (QtFont):
1421 # Font used for the debugging console.
1422 # Default: 8pt ${_monospace}
1423 #
1424 # web-family-standard (FontFamily):
1425 # Font family for standard fonts.
1426 # Default:
1427 #
1428 # web-family-fixed (FontFamily):
1429 # Font family for fixed fonts.
1430 # Default:
1431 #
1432 # web-family-serif (FontFamily):
1433 # Font family for serif fonts.
1434 # Default:
1435 #
1436 # web-family-sans-serif (FontFamily):
1437 # Font family for sans-serif fonts.
1438 # Default:
1439 #
1440 # web-family-cursive (FontFamily):
1441 # Font family for cursive fonts.
1442 # Default:
1443 #
1444 # web-family-fantasy (FontFamily):
1445 # Font family for fantasy fonts.
1446 # Default:
1447 #
1448 # web-size-minimum (Int):
1449 # The hard minimum font size.
1450 # Default:
1451 #
1452 # web-size-minimum-logical (Int):
1453 # The minimum logical font size that is applied when zooming out.
1454 # Default:
1455 #
1456 # web-size-default (Int):
1457 # The default font size for regular text.
1458 # Default:
1459 #
1460 # web-size-default-fixed (Int):
1461 # The default font size for fixed-pitch text.
1462 # Default:
1463 #
1464 # keyhint (Font):
1465 # Font used in the keyhint widget.
1466 # Default: 8pt ${_monospace}
1467 _monospace = Terminus, Monospace, "DejaVu Sans Mono", Monaco, "Bitstream Vera Sans Mono", "Andale Mono", "Liberation Mono", "Courier New", Courier, monospace, Fixed, Consolas, Terminal
1468 completion = 8pt ${_monospace}
1469 completion.category = bold ${completion}
1470 tabbar = 8pt ${_monospace}
1471 statusbar = 8pt ${_monospace}
1472 downloads = 8pt ${_monospace}
1473 hints = bold 12px ${_monospace}
1474 debug-console = 8pt ${_monospace}
1475 web-family-standard =
1476 web-family-fixed =
1477 web-family-serif =
1478 web-family-sans-serif =
1479 web-family-cursive =
1480 web-family-fantasy =
1481 web-size-minimum =
1482 web-size-minimum-logical =
1483 web-size-default =
1484 web-size-default-fixed =
1485 keyhint = 8pt ${_monospace}