]> git.rmz.io Git - dotfiles.git/blob - qutebrowser/qutebrowser.conf
fixup! 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 = false
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 = false
983 uppercase = true
984 dictionary = /usr/share/dict/words
985 auto-follow = unique-match
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 mpv = spawn --userscript ~/src/qutebrowser/misc/userscripts/view_in_mpv
1020
1021 [colors]
1022 # Colors used in the UI.
1023 # A value can be in one of the following format:
1024 # * `#RGB`/`#RRGGBB`/`#RRRGGGBBB`/`#RRRRGGGGBBBB`
1025 # * An SVG color name as specified in http://www.w3.org/TR/SVG/types.html#ColorKeywords[the W3C specification].
1026 # * transparent (no color)
1027 # * `rgb(r, g, b)` / `rgba(r, g, b, a)` (values 0-255 or percentages)
1028 # * `hsv(h, s, v)` / `hsva(h, s, v, a)` (values 0-255, hue 0-359)
1029 # * A gradient as explained in http://doc.qt.io/qt-5/stylesheet-reference.html#list-of-property-types[the Qt documentation] under ``Gradient''.
1030 # A *.system value determines the color system to use for color
1031 # interpolation between similarly-named *.start and *.stop entries,
1032 # regardless of how they are defined in the options. Valid values are
1033 # 'rgb', 'hsv', and 'hsl'.
1034 # 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].
1035 #
1036 # completion.fg (QtColor):
1037 # Text color of the completion widget.
1038 # Default: white
1039 #
1040 # completion.bg (QssColor):
1041 # Background color of the completion widget.
1042 # Default: #333333
1043 #
1044 # completion.alternate-bg (QssColor):
1045 # Alternating background color of the completion widget.
1046 # Default: #444444
1047 #
1048 # completion.category.fg (QtColor):
1049 # Foreground color of completion widget category headers.
1050 # Default: white
1051 #
1052 # completion.category.bg (QssColor):
1053 # Background color of the completion widget category headers.
1054 # Default: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #888888,
1055 # stop:1 #505050)
1056 #
1057 # completion.category.border.top (QssColor):
1058 # Top border color of the completion widget category headers.
1059 # Default: black
1060 #
1061 # completion.category.border.bottom (QssColor):
1062 # Bottom border color of the completion widget category headers.
1063 # Default: ${completion.category.border.top}
1064 #
1065 # completion.item.selected.fg (QtColor):
1066 # Foreground color of the selected completion item.
1067 # Default: black
1068 #
1069 # completion.item.selected.bg (QssColor):
1070 # Background color of the selected completion item.
1071 # Default: #e8c000
1072 #
1073 # completion.item.selected.border.top (QssColor):
1074 # Top border color of the completion widget category headers.
1075 # Default: #bbbb00
1076 #
1077 # completion.item.selected.border.bottom (QssColor):
1078 # Bottom border color of the selected completion item.
1079 # Default: ${completion.item.selected.border.top}
1080 #
1081 # completion.match.fg (QssColor):
1082 # Foreground color of the matched text in the completion.
1083 # Default: #ff4444
1084 #
1085 # completion.scrollbar.fg (QssColor):
1086 # Color of the scrollbar handle in completion view.
1087 # Default: ${completion.fg}
1088 #
1089 # completion.scrollbar.bg (QssColor):
1090 # Color of the scrollbar in completion view
1091 # Default: ${completion.bg}
1092 #
1093 # statusbar.fg (QssColor):
1094 # Foreground color of the statusbar.
1095 # Default: white
1096 #
1097 # statusbar.bg (QssColor):
1098 # Background color of the statusbar.
1099 # Default: black
1100 #
1101 # statusbar.fg.error (QssColor):
1102 # Foreground color of the statusbar if there was an error.
1103 # Default: ${statusbar.fg}
1104 #
1105 # statusbar.bg.error (QssColor):
1106 # Background color of the statusbar if there was an error.
1107 # Default: red
1108 #
1109 # statusbar.fg.warning (QssColor):
1110 # Foreground color of the statusbar if there is a warning.
1111 # Default: ${statusbar.fg}
1112 #
1113 # statusbar.bg.warning (QssColor):
1114 # Background color of the statusbar if there is a warning.
1115 # Default: darkorange
1116 #
1117 # statusbar.fg.prompt (QssColor):
1118 # Foreground color of the statusbar if there is a prompt.
1119 # Default: ${statusbar.fg}
1120 #
1121 # statusbar.bg.prompt (QssColor):
1122 # Background color of the statusbar if there is a prompt.
1123 # Default: darkblue
1124 #
1125 # statusbar.fg.insert (QssColor):
1126 # Foreground color of the statusbar in insert mode.
1127 # Default: ${statusbar.fg}
1128 #
1129 # statusbar.bg.insert (QssColor):
1130 # Background color of the statusbar in insert mode.
1131 # Default: darkgreen
1132 #
1133 # statusbar.fg.command (QssColor):
1134 # Foreground color of the statusbar in command mode.
1135 # Default: ${statusbar.fg}
1136 #
1137 # statusbar.bg.command (QssColor):
1138 # Background color of the statusbar in command mode.
1139 # Default: ${statusbar.bg}
1140 #
1141 # statusbar.fg.caret (QssColor):
1142 # Foreground color of the statusbar in caret mode.
1143 # Default: ${statusbar.fg}
1144 #
1145 # statusbar.bg.caret (QssColor):
1146 # Background color of the statusbar in caret mode.
1147 # Default: purple
1148 #
1149 # statusbar.fg.caret-selection (QssColor):
1150 # Foreground color of the statusbar in caret mode with a selection
1151 # Default: ${statusbar.fg}
1152 #
1153 # statusbar.bg.caret-selection (QssColor):
1154 # Background color of the statusbar in caret mode with a selection
1155 # Default: #a12dff
1156 #
1157 # statusbar.progress.bg (QssColor):
1158 # Background color of the progress bar.
1159 # Default: white
1160 #
1161 # statusbar.url.fg (QssColor):
1162 # Default foreground color of the URL in the statusbar.
1163 # Default: ${statusbar.fg}
1164 #
1165 # statusbar.url.fg.success (QssColor):
1166 # Foreground color of the URL in the statusbar on successful load
1167 # (http).
1168 # Default: white
1169 #
1170 # statusbar.url.fg.success.https (QssColor):
1171 # Foreground color of the URL in the statusbar on successful load
1172 # (https).
1173 # Default: lime
1174 #
1175 # statusbar.url.fg.error (QssColor):
1176 # Foreground color of the URL in the statusbar on error.
1177 # Default: orange
1178 #
1179 # statusbar.url.fg.warn (QssColor):
1180 # Foreground color of the URL in the statusbar when there's a
1181 # warning.
1182 # Default: yellow
1183 #
1184 # statusbar.url.fg.hover (QssColor):
1185 # Foreground color of the URL in the statusbar for hovered links.
1186 # Default: aqua
1187 #
1188 # tabs.fg.odd (QtColor):
1189 # Foreground color of unselected odd tabs.
1190 # Default: white
1191 #
1192 # tabs.bg.odd (QtColor):
1193 # Background color of unselected odd tabs.
1194 # Default: grey
1195 #
1196 # tabs.fg.even (QtColor):
1197 # Foreground color of unselected even tabs.
1198 # Default: white
1199 #
1200 # tabs.bg.even (QtColor):
1201 # Background color of unselected even tabs.
1202 # Default: darkgrey
1203 #
1204 # tabs.fg.selected.odd (QtColor):
1205 # Foreground color of selected odd tabs.
1206 # Default: white
1207 #
1208 # tabs.bg.selected.odd (QtColor):
1209 # Background color of selected odd tabs.
1210 # Default: black
1211 #
1212 # tabs.fg.selected.even (QtColor):
1213 # Foreground color of selected even tabs.
1214 # Default: ${tabs.fg.selected.odd}
1215 #
1216 # tabs.bg.selected.even (QtColor):
1217 # Background color of selected even tabs.
1218 # Default: ${tabs.bg.selected.odd}
1219 #
1220 # tabs.bg.bar (QtColor):
1221 # Background color of the tab bar.
1222 # Default: #555555
1223 #
1224 # tabs.indicator.start (QtColor):
1225 # Color gradient start for the tab indicator.
1226 # Default: #0000aa
1227 #
1228 # tabs.indicator.stop (QtColor):
1229 # Color gradient end for the tab indicator.
1230 # Default: #00aa00
1231 #
1232 # tabs.indicator.error (QtColor):
1233 # Color for the tab indicator on errors..
1234 # Default: #ff0000
1235 #
1236 # tabs.indicator.system (ColorSystem):
1237 # Color gradient interpolation system for the tab indicator.
1238 # rgb: Interpolate in the RGB color system.
1239 # hsv: Interpolate in the HSV color system.
1240 # hsl: Interpolate in the HSL color system.
1241 # none: Don't show a gradient.
1242 # Default: rgb
1243 #
1244 # hints.fg (QssColor):
1245 # Font color for hints.
1246 # Default: black
1247 #
1248 # hints.bg (QssColor):
1249 # Background color for hints. Note that you can use a `rgba(...)`
1250 # value for transparency.
1251 # Default: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 rgba(255,
1252 # 247, 133, 0.8), stop:1 rgba(255, 197, 66, 0.8))
1253 #
1254 # hints.fg.match (QssColor):
1255 # Font color for the matched part of hints.
1256 # Default: green
1257 #
1258 # downloads.bg.bar (QssColor):
1259 # Background color for the download bar.
1260 # Default: black
1261 #
1262 # downloads.fg.start (QtColor):
1263 # Color gradient start for download text.
1264 # Default: white
1265 #
1266 # downloads.bg.start (QtColor):
1267 # Color gradient start for download backgrounds.
1268 # Default: #0000aa
1269 #
1270 # downloads.fg.stop (QtColor):
1271 # Color gradient end for download text.
1272 # Default: ${downloads.fg.start}
1273 #
1274 # downloads.bg.stop (QtColor):
1275 # Color gradient stop for download backgrounds.
1276 # Default: #00aa00
1277 #
1278 # downloads.fg.system (ColorSystem):
1279 # Color gradient interpolation system for download text.
1280 # rgb: Interpolate in the RGB color system.
1281 # hsv: Interpolate in the HSV color system.
1282 # hsl: Interpolate in the HSL color system.
1283 # none: Don't show a gradient.
1284 # Default: rgb
1285 #
1286 # downloads.bg.system (ColorSystem):
1287 # Color gradient interpolation system for download backgrounds.
1288 # rgb: Interpolate in the RGB color system.
1289 # hsv: Interpolate in the HSV color system.
1290 # hsl: Interpolate in the HSL color system.
1291 # none: Don't show a gradient.
1292 # Default: rgb
1293 #
1294 # downloads.fg.error (QtColor):
1295 # Foreground color for downloads with errors.
1296 # Default: white
1297 #
1298 # downloads.bg.error (QtColor):
1299 # Background color for downloads with errors.
1300 # Default: red
1301 #
1302 # webpage.bg (QtColor):
1303 # Background color for webpages if unset (or empty to use the
1304 # theme's color)
1305 # Default: white
1306 #
1307 # keyhint.fg (QssColor):
1308 # Text color for the keyhint widget.
1309 # Default: #FFFFFF
1310 #
1311 # keyhint.fg.suffix (CssColor):
1312 # Highlight color for keys to complete the current keychain
1313 # Default: #FFFF00
1314 #
1315 # keyhint.bg (QssColor):
1316 # Background color of the keyhint widget.
1317 # Default: rgba(0, 0, 0, 80%)
1318 completion.fg = white
1319 completion.bg = #333333
1320 completion.alternate-bg = #444444
1321 completion.category.fg = white
1322 completion.category.bg = qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #888888, stop:1 #505050)
1323 completion.category.border.top = black
1324 completion.category.border.bottom = ${completion.category.border.top}
1325 completion.item.selected.fg = black
1326 completion.item.selected.bg = #e8c000
1327 completion.item.selected.border.top = #bbbb00
1328 completion.item.selected.border.bottom = ${completion.item.selected.border.top}
1329 completion.match.fg = #ff4444
1330 completion.scrollbar.fg = ${completion.fg}
1331 completion.scrollbar.bg = ${completion.bg}
1332 statusbar.fg = white
1333 statusbar.bg = black
1334 statusbar.fg.error = ${statusbar.fg}
1335 statusbar.bg.error = red
1336 statusbar.fg.warning = ${statusbar.fg}
1337 statusbar.bg.warning = darkorange
1338 statusbar.fg.prompt = ${statusbar.fg}
1339 statusbar.bg.prompt = darkblue
1340 statusbar.fg.insert = ${statusbar.fg}
1341 statusbar.bg.insert = darkgreen
1342 statusbar.fg.command = ${statusbar.fg}
1343 statusbar.bg.command = ${statusbar.bg}
1344 statusbar.fg.caret = ${statusbar.fg}
1345 statusbar.bg.caret = purple
1346 statusbar.fg.caret-selection = ${statusbar.fg}
1347 statusbar.bg.caret-selection = #a12dff
1348 statusbar.progress.bg = white
1349 statusbar.url.fg = ${statusbar.fg}
1350 statusbar.url.fg.success = white
1351 statusbar.url.fg.success.https = lime
1352 statusbar.url.fg.error = orange
1353 statusbar.url.fg.warn = yellow
1354 statusbar.url.fg.hover = aqua
1355 tabs.fg.odd = white
1356 tabs.bg.odd = grey
1357 tabs.fg.even = white
1358 tabs.bg.even = darkgrey
1359 tabs.fg.selected.odd = white
1360 tabs.bg.selected.odd = black
1361 tabs.fg.selected.even = ${tabs.fg.selected.odd}
1362 tabs.bg.selected.even = ${tabs.bg.selected.odd}
1363 tabs.bg.bar = #555555
1364 tabs.indicator.start = #0000aa
1365 tabs.indicator.stop = #00aa00
1366 tabs.indicator.error = #ff0000
1367 tabs.indicator.system = rgb
1368 hints.fg = black
1369 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))
1370 hints.fg.match = green
1371 downloads.bg.bar = black
1372 downloads.fg.start = white
1373 downloads.bg.start = #0000aa
1374 downloads.fg.stop = ${downloads.fg.start}
1375 downloads.bg.stop = #00aa00
1376 downloads.fg.system = rgb
1377 downloads.bg.system = rgb
1378 downloads.fg.error = white
1379 downloads.bg.error = red
1380 webpage.bg = white
1381 keyhint.fg = #FFFFFF
1382 keyhint.fg.suffix = #FFFF00
1383 keyhint.bg = rgba(0, 0, 0, 80%)
1384
1385 [fonts]
1386 # Fonts used for the UI, with optional style/weight/size.
1387 # * Style: `normal`/`italic`/`oblique`
1388 # * Weight: `normal`, `bold`, `100`..`900`
1389 # * Size: _number_ `px`/`pt`
1390 #
1391 # _monospace (Font):
1392 # Default monospace fonts.
1393 # Default: Terminus, Monospace, "DejaVu Sans Mono", Monaco,
1394 # "Bitstream Vera Sans Mono", "Andale Mono", "Courier New", Courier,
1395 # "Liberation Mono", monospace, Fixed, Consolas, Terminal
1396 #
1397 # completion (Font):
1398 # Font used in the completion widget.
1399 # Default: 8pt ${_monospace}
1400 #
1401 # completion.category (Font):
1402 # Font used in the completion categories.
1403 # Default: bold ${completion}
1404 #
1405 # tabbar (QtFont):
1406 # Font used in the tab bar.
1407 # Default: 8pt ${_monospace}
1408 #
1409 # statusbar (Font):
1410 # Font used in the statusbar.
1411 # Default: 8pt ${_monospace}
1412 #
1413 # downloads (Font):
1414 # Font used for the downloadbar.
1415 # Default: 8pt ${_monospace}
1416 #
1417 # hints (Font):
1418 # Font used for the hints.
1419 # Default: bold 13px ${_monospace}
1420 #
1421 # debug-console (QtFont):
1422 # Font used for the debugging console.
1423 # Default: 8pt ${_monospace}
1424 #
1425 # web-family-standard (FontFamily):
1426 # Font family for standard fonts.
1427 # Default:
1428 #
1429 # web-family-fixed (FontFamily):
1430 # Font family for fixed fonts.
1431 # Default:
1432 #
1433 # web-family-serif (FontFamily):
1434 # Font family for serif fonts.
1435 # Default:
1436 #
1437 # web-family-sans-serif (FontFamily):
1438 # Font family for sans-serif fonts.
1439 # Default:
1440 #
1441 # web-family-cursive (FontFamily):
1442 # Font family for cursive fonts.
1443 # Default:
1444 #
1445 # web-family-fantasy (FontFamily):
1446 # Font family for fantasy fonts.
1447 # Default:
1448 #
1449 # web-size-minimum (Int):
1450 # The hard minimum font size.
1451 # Default:
1452 #
1453 # web-size-minimum-logical (Int):
1454 # The minimum logical font size that is applied when zooming out.
1455 # Default:
1456 #
1457 # web-size-default (Int):
1458 # The default font size for regular text.
1459 # Default:
1460 #
1461 # web-size-default-fixed (Int):
1462 # The default font size for fixed-pitch text.
1463 # Default:
1464 #
1465 # keyhint (Font):
1466 # Font used in the keyhint widget.
1467 # Default: 8pt ${_monospace}
1468 _monospace = Terminus, Monospace, "DejaVu Sans Mono", Monaco, "Bitstream Vera Sans Mono", "Andale Mono", "Liberation Mono", "Courier New", Courier, monospace, Fixed, Consolas, Terminal
1469 completion = 8pt ${_monospace}
1470 completion.category = bold ${completion}
1471 tabbar = 8pt ${_monospace}
1472 statusbar = 8pt ${_monospace}
1473 downloads = 8pt ${_monospace}
1474 hints = bold 12px ${_monospace}
1475 debug-console = 8pt ${_monospace}
1476 web-family-standard =
1477 web-family-fixed =
1478 web-family-serif =
1479 web-family-sans-serif =
1480 web-family-cursive =
1481 web-family-fantasy =
1482 web-size-minimum =
1483 web-size-minimum-logical =
1484 web-size-default =
1485 web-size-default-fixed =
1486 keyhint = 8pt ${_monospace}