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