]> git.rmz.io Git - dotfiles.git/blob - qutebrowser/qutebrowser.conf
weechat: update scripts and settings
[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 #
369 # netrc-file (File):
370 # Set location of a netrc-file for HTTP authentication. If empty,
371 # ~/.netrc is used.
372 # Default:
373 do-not-track = true
374 accept-language = en-US,en,de,fr
375 referer-header = same-domain
376 user-agent =
377 proxy = system
378 proxy-dns-requests = true
379 ssl-strict = ask
380 dns-prefetch = true
381 custom-headers =
382 netrc-file =
383
384 [completion]
385 # Options related to completion and command history.
386 #
387 # show (String):
388 # When to show the autocompletion window.
389 # always: Whenever a completion is available.
390 # auto: Whenever a completion is requested.
391 # never: Never.
392 # Default: always
393 #
394 # download-path-suggestion (String):
395 # What to display in the download filename input.
396 # path: Show only the download path.
397 # filename: Show only download filename.
398 # both: Show download path and filename.
399 # Default: path
400 #
401 # timestamp-format (TimestampTemplate):
402 # How to format timestamps (e.g. for history)
403 # Default: %Y-%m-%d
404 #
405 # height (PercOrInt):
406 # The height of the completion, in px or as percentage of the
407 # window.
408 # Default: 50%
409 #
410 # cmd-history-max-items (Int):
411 # How many commands to save in the command history.
412 # 0: no history / -1: unlimited
413 # Default: 100
414 #
415 # web-history-max-items (Int):
416 # How many URLs to show in the web history.
417 # 0: no history / -1: unlimited
418 # Default: 1000
419 #
420 # quick-complete (Bool):
421 # Whether to move on to the next part when there's only one possible
422 # completion left.
423 # Valid values: true, false
424 # Default: true
425 #
426 # shrink (Bool):
427 # Whether to shrink the completion to be smaller than the configured
428 # size if there are no scrollbars.
429 # Valid values: true, false
430 # Default: false
431 #
432 # scrollbar-width (Int):
433 # Width of the scrollbar in the completion window (in px).
434 # Default: 12
435 #
436 # scrollbar-padding (Int):
437 # Padding of scrollbar handle in completion window (in px).
438 # Default: 2
439 show = always
440 download-path-suggestion = path
441 timestamp-format = %Y-%m-%d
442 height = 150
443 cmd-history-max-items = 100
444 web-history-max-items = 1000
445 quick-complete = false
446 shrink = true
447 scrollbar-width = 12
448 scrollbar-padding = 2
449
450 [input]
451 # Options related to input modes.
452 #
453 # timeout (Int):
454 # Timeout (in milliseconds) for ambiguous key bindings.
455 # If the current input forms both a complete match and a partial
456 # match, the complete match will be executed after this time.
457 # Default: 500
458 #
459 # partial-timeout (Int):
460 # Timeout (in milliseconds) for partially typed key bindings.
461 # If the current input forms only partial matches, the keystring
462 # will be cleared after this time.
463 # Default: 5000
464 #
465 # insert-mode-on-plugins (Bool):
466 # Whether to switch to insert mode when clicking flash and other
467 # plugins.
468 # Valid values: true, false
469 # Default: false
470 #
471 # auto-leave-insert-mode (Bool):
472 # Whether to leave insert mode if a non-editable element is clicked.
473 # Valid values: true, false
474 # Default: true
475 #
476 # auto-insert-mode (Bool):
477 # Whether to automatically enter insert mode if an editable element
478 # is focused after page load.
479 # Valid values: true, false
480 # Default: false
481 #
482 # forward-unbound-keys (String):
483 # Whether to forward unbound keys to the webview in normal mode.
484 # all: Forward all unbound keys.
485 # auto: Forward unbound non-alphanumeric keys.
486 # none: Don't forward any keys.
487 # Default: auto
488 #
489 # spatial-navigation (Bool):
490 # Enables or disables the Spatial Navigation feature.
491 # Spatial navigation consists in the ability to navigate between
492 # focusable elements in a Web page, such as hyperlinks and form
493 # controls, by using Left, Right, Up and Down arrow keys. For
494 # example, if a user presses the Right key, heuristics determine
495 # whether there is an element he might be trying to reach towards
496 # the right and which element he probably wants.
497 # Valid values: true, false
498 # Default: false
499 #
500 # links-included-in-focus-chain (Bool):
501 # Whether hyperlinks should be included in the keyboard focus chain.
502 # Valid values: true, false
503 # Default: true
504 #
505 # rocker-gestures (Bool):
506 # Whether to enable Opera-like mouse rocker gestures. This disables
507 # the context menu.
508 # Valid values: true, false
509 # Default: false
510 #
511 # mouse-zoom-divider (Int):
512 # How much to divide the mouse wheel movements to translate them
513 # into zoom increments.
514 # Default: 512
515 timeout = 500
516 partial-timeout = 1000
517 insert-mode-on-plugins = false
518 auto-leave-insert-mode = true
519 auto-insert-mode = false
520 forward-unbound-keys = auto
521 spatial-navigation = false
522 links-included-in-focus-chain = true
523 rocker-gestures = false
524 mouse-zoom-divider = 512
525
526 [tabs]
527 # Configuration of the tab bar.
528 #
529 # background-tabs (Bool):
530 # Whether to open new tabs (middleclick/ctrl+click) in background.
531 # Valid values: true, false
532 # Default: false
533 #
534 # select-on-remove (SelectOnRemove):
535 # Which tab to select when the focused tab is removed.
536 # left: Select the tab on the left.
537 # right: Select the tab on the right.
538 # previous: Select the previously selected tab.
539 # Default: right
540 #
541 # new-tab-position (NewTabPosition):
542 # How new tabs 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: right
548 #
549 # new-tab-position-explicit (NewTabPosition):
550 # How new tabs opened explicitly are positioned.
551 # left: On the left of the current tab.
552 # right: On the right of the current tab.
553 # first: At the left end.
554 # last: At the right end.
555 # Default: last
556 #
557 # last-close (String):
558 # Behavior when the last tab is closed.
559 # ignore: Don't do anything.
560 # blank: Load a blank page.
561 # startpage: Load the start page.
562 # default-page: Load the default page.
563 # close: Close the window.
564 # Default: ignore
565 #
566 # show (String):
567 # When to show the tab bar
568 # always: Always show the tab bar.
569 # never: Always hide the tab bar.
570 # multiple: Hide the tab bar if only one tab is open.
571 # switching: Show the tab bar when switching tabs.
572 # Default: always
573 #
574 # show-switching-delay (Int):
575 # Time to show the tab bar before hiding it when tabs->show is set
576 # to 'switching'.
577 # Default: 800
578 #
579 # wrap (Bool):
580 # Whether to wrap when changing tabs.
581 # Valid values: true, false
582 # Default: true
583 #
584 # movable (Bool):
585 # Whether tabs should be movable.
586 # Valid values: true, false
587 # Default: true
588 #
589 # close-mouse-button (String):
590 # On which mouse button to close tabs.
591 # right: Close tabs on right-click.
592 # middle: Close tabs on middle-click.
593 # none: Don't close tabs using the mouse.
594 # Default: middle
595 #
596 # position (Position):
597 # The position of the tab bar.
598 # Valid values: top, bottom, left, right
599 # Default: top
600 #
601 # show-favicons (Bool):
602 # Whether to show favicons in the tab bar.
603 # Valid values: true, false
604 # Default: true
605 #
606 # width (PercOrInt):
607 # The width of the tab bar if it's vertical, in px or as percentage
608 # of the window.
609 # Default: 20%
610 #
611 # indicator-width (Int):
612 # Width of the progress indicator (0 to disable).
613 # Default: 3
614 #
615 # tabs-are-windows (Bool):
616 # Whether to open windows instead of tabs.
617 # Valid values: true, false
618 # Default: false
619 #
620 # title-format (FormatString):
621 # The format to use for the tab title. The following placeholders
622 # are defined:
623 # * `{perc}`: The percentage as a string like `[10%]`.
624 # * `{perc_raw}`: The raw percentage, e.g. `10`
625 # * `{title}`: The title of the current web page
626 # * `{title_sep}`: The string ` - ` if a title is set, empty
627 # otherwise.
628 # * `{index}`: The index of this tab.
629 # * `{id}`: The internal tab ID of this tab.
630 # * `{scroll_pos}`: The page scroll position.
631 # * `{host}`: The host of the current web page.
632 # Default: {index}: {title}
633 #
634 # title-alignment (TextAlignment):
635 # Alignment of the text inside of tabs
636 # Valid values: left, right, center
637 # Default: left
638 #
639 # mousewheel-tab-switching (Bool):
640 # Switch between tabs using the mouse wheel.
641 # Valid values: true, false
642 # Default: true
643 #
644 # padding (Padding):
645 # Padding for tabs (top, bottom, left, right).
646 # Default: 0,0,5,5
647 #
648 # indicator-padding (Padding):
649 # Padding for indicators (top, bottom, left, right).
650 # Default: 2,2,0,4
651 background-tabs = false
652 select-on-remove = left
653 new-tab-position = right
654 new-tab-position-explicit = right
655 last-close = ignore
656 show = always
657 show-switching-delay = 800
658 wrap = true
659 movable = true
660 close-mouse-button = middle
661 position = top
662 show-favicons = true
663 width = 20%
664 indicator-width = 3
665 tabs-are-windows = false
666 title-format = {index}: {title}
667 title-alignment = left
668 mousewheel-tab-switching = true
669 padding = 0,0,5,5
670 indicator-padding = 2,2,0,4
671
672 [storage]
673 # Settings related to cache and storage.
674 #
675 # download-directory (Directory):
676 # The directory to save downloads to. An empty value selects a
677 # sensible os-specific default. Will expand environment variables.
678 # Default:
679 #
680 # prompt-download-directory (Bool):
681 # Whether to prompt the user for the download location.
682 # If set to false, 'download-directory' will be used.
683 # Valid values: true, false
684 # Default: true
685 #
686 # remember-download-directory (Bool):
687 # Whether to remember the last used download directory.
688 # Valid values: true, false
689 # Default: true
690 #
691 # maximum-pages-in-cache (Int):
692 # The maximum number of pages to hold in the global memory page
693 # cache.
694 # The Page Cache allows for a nicer user experience when navigating
695 # forth or back to pages in the forward/back history, by pausing and
696 # resuming up to _n_ pages.
697 # For more information about the feature, please refer to:
698 # http://webkit.org/blog/427/webkit-page-cache-i-the-basics/
699 # Default:
700 #
701 # object-cache-capacities (List of WebKitBytes):
702 # The capacities for the global memory cache for dead objects such
703 # as stylesheets or scripts. Syntax: cacheMinDeadCapacity,
704 # cacheMaxDead, totalCapacity.
705 # The _cacheMinDeadCapacity_ specifies the minimum number of bytes
706 # that dead objects should consume when the cache is under pressure.
707 # _cacheMaxDead_ is the maximum number of bytes that dead objects
708 # should consume when the cache is *not* under pressure.
709 # _totalCapacity_ specifies the maximum number of bytes that the
710 # cache should consume *overall*.
711 # Default:
712 #
713 # offline-storage-default-quota (WebKitBytes):
714 # Default quota for new offline storage databases.
715 # Default:
716 #
717 # offline-web-application-cache-quota (WebKitBytes):
718 # Quota for the offline web application cache.
719 # Default:
720 #
721 # offline-storage-database (Bool):
722 # Whether support for the HTML 5 offline storage feature is enabled.
723 # Valid values: true, false
724 # Default: true
725 #
726 # offline-web-application-storage (Bool):
727 # Whether support for the HTML 5 web application cache feature is
728 # enabled.
729 # An application cache acts like an HTTP cache in some sense. For
730 # documents that use the application cache via JavaScript, the
731 # loader engine will first ask the application cache for the
732 # contents, before hitting the network.
733 # The feature is described in details at:
734 # http://dev.w3.org/html5/spec/Overview.html#appcache
735 # Valid values: true, false
736 # Default: true
737 #
738 # local-storage (Bool):
739 # Whether support for the HTML 5 local storage feature is enabled.
740 # Valid values: true, false
741 # Default: true
742 #
743 # cache-size (Int):
744 # Size of the HTTP network cache.
745 # Default: 52428800
746 download-directory = ~/downloads
747 prompt-download-directory = true
748 remember-download-directory = true
749 maximum-pages-in-cache =
750 object-cache-capacities =
751 offline-storage-default-quota =
752 offline-web-application-cache-quota =
753 offline-storage-database = true
754 offline-web-application-storage = true
755 local-storage = true
756 cache-size = 52428800
757
758 [content]
759 # Loaded plugins/scripts and allowed actions.
760 #
761 # allow-images (Bool):
762 # Whether images are automatically loaded in web pages.
763 # Valid values: true, false
764 # Default: true
765 #
766 # allow-javascript (Bool):
767 # Enables or disables the running of JavaScript programs.
768 # Valid values: true, false
769 # Default: true
770 #
771 # allow-plugins (Bool):
772 # Enables or disables plugins in Web pages.
773 # Qt plugins with a mimetype such as "application/x-qt-plugin" are
774 # not affected by this setting.
775 # Valid values: true, false
776 # Default: false
777 #
778 # webgl (Bool):
779 # Enables or disables WebGL. For QtWebEngine, Qt/PyQt >= 5.7 is
780 # required for this setting.
781 # Valid values: true, false
782 # Default: false
783 #
784 # css-regions (Bool):
785 # Enable or disable support for CSS regions.
786 # Valid values: true, false
787 # Default: true
788 #
789 # hyperlink-auditing (Bool):
790 # Enable or disable hyperlink auditing (<a ping>).
791 # Valid values: true, false
792 # Default: false
793 #
794 # geolocation (BoolAsk):
795 # Allow websites to request geolocations.
796 # Valid values: true, false, ask
797 # Default: ask
798 #
799 # notifications (BoolAsk):
800 # Allow websites to show notifications.
801 # Valid values: true, false, ask
802 # Default: ask
803 #
804 # javascript-can-open-windows-automatically (Bool):
805 # Whether JavaScript programs can open new windows without user
806 # interaction.
807 # Valid values: true, false
808 # Default: false
809 #
810 # javascript-can-close-windows (Bool):
811 # Whether JavaScript programs can close windows.
812 # Valid values: true, false
813 # Default: false
814 #
815 # javascript-can-access-clipboard (Bool):
816 # Whether JavaScript programs can read or write to the clipboard.
817 # Valid values: true, false
818 # Default: false
819 #
820 # ignore-javascript-prompt (Bool):
821 # Whether all javascript prompts should be ignored.
822 # Valid values: true, false
823 # Default: false
824 #
825 # ignore-javascript-alert (Bool):
826 # Whether all javascript alerts should be ignored.
827 # Valid values: true, false
828 # Default: false
829 #
830 # local-content-can-access-remote-urls (Bool):
831 # Whether locally loaded documents are allowed to access remote
832 # urls.
833 # Valid values: true, false
834 # Default: false
835 #
836 # local-content-can-access-file-urls (Bool):
837 # Whether locally loaded documents are allowed to access other local
838 # urls.
839 # Valid values: true, false
840 # Default: true
841 #
842 # cookies-accept (String):
843 # Control which cookies to accept.
844 # all: Accept all cookies.
845 # no-3rdparty: Accept cookies from the same origin only.
846 # no-unknown-3rdparty: Accept cookies from the same origin only,
847 # unless a cookie is already set for the domain.
848 # never: Don't accept cookies at all.
849 # Default: no-3rdparty
850 #
851 # cookies-store (Bool):
852 # Whether to store cookies.
853 # Valid values: true, false
854 # Default: true
855 #
856 # host-block-lists (List of Url):
857 # List of URLs of lists which contain hosts to block.
858 # The file can be in one of the following formats:
859 # - An '/etc/hosts'-like file
860 # - One host per line
861 # - A zip-file of any of the above, with either only one file, or a
862 # file named 'hosts' (with any extension).
863 # Default:
864 # 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
865 #
866 # host-blocking-enabled (Bool):
867 # Whether host blocking is enabled.
868 # Valid values: true, false
869 # Default: true
870 #
871 # host-blocking-whitelist (List of String):
872 # List of domains that should always be loaded, despite being
873 # ad-blocked.
874 # Domains may contain * and ? wildcards and are otherwise required
875 # to exactly match the requested domain.
876 # Local domains are always exempt from hostblocking.
877 # Default: piwik.org
878 #
879 # enable-pdfjs (Bool):
880 # Enable pdf.js to view PDF files in the browser.
881 # Note that the files can still be downloaded by clicking the
882 # download button in the pdf.js viewer.
883 # Valid values: true, false
884 # Default: false
885 allow-images = true
886 allow-javascript = true
887 allow-plugins = false
888 webgl = true
889 css-regions = true
890 hyperlink-auditing = false
891 geolocation = ask
892 notifications = ask
893 javascript-can-open-windows-automatically = false
894 javascript-can-close-windows = false
895 javascript-can-access-clipboard = false
896 ignore-javascript-prompt = false
897 ignore-javascript-alert = false
898 local-content-can-access-remote-urls = false
899 local-content-can-access-file-urls = true
900 cookies-accept = no-3rdparty
901 cookies-store = true
902 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
903 host-blocking-enabled = true
904 host-blocking-whitelist = piwik.org
905 enable-pdfjs = false
906
907 [hints]
908 # Hinting settings.
909 #
910 # border (String):
911 # CSS border value for hints.
912 # Default: 1px solid #E3BE23
913 #
914 # mode (String):
915 # Mode to use for hints.
916 # number: Use numeric hints.
917 # letter: Use the chars in the hints -> chars setting.
918 # word: Use hints words based on the html elements and the extra
919 # words.
920 # Default: letter
921 #
922 # chars (UniqueCharString):
923 # Chars used for hint strings.
924 # Default: asdfghjkl
925 #
926 # min-chars (Int):
927 # Minimum number of chars used for hint strings.
928 # Default: 1
929 #
930 # scatter (Bool):
931 # Whether to scatter hint key chains (like Vimium) or not (like
932 # dwb). Ignored for number hints.
933 # Valid values: true, false
934 # Default: true
935 #
936 # uppercase (Bool):
937 # Make chars in hint strings uppercase.
938 # Valid values: true, false
939 # Default: false
940 #
941 # dictionary (File):
942 # The dictionary file to be used by the word hints.
943 # Default: /usr/share/dict/words
944 #
945 # auto-follow (String):
946 # Controls when a hint can be automatically followed without the
947 # user pressing Enter.
948 # always: Auto-follow whenever there is only a single hint on a
949 # page.
950 # unique-match: Auto-follow whenever there is a unique non-empty
951 # match in either the hint string (word mode) or filter (number
952 # mode).
953 # full-match: Follow the hint when the user typed the whole hint
954 # (letter, word or number mode) or the element's text (only in
955 # number mode).
956 # never: The user will always need to press Enter to follow a
957 # hint.
958 # Default: unique-match
959 #
960 # auto-follow-timeout (Int):
961 # A timeout (in milliseconds) to inhibit normal-mode key bindings
962 # after a successful auto-follow.
963 # Default: 0
964 #
965 # next-regexes (List of Regex):
966 # A comma-separated list of regexes to use for 'next' links.
967 # Default:
968 # \bnext\b,\bmore\b,\bnewer\b,\b[>→≫]\b,\b(>>|»)\b,\bcontinue\b
969 #
970 # prev-regexes (List of Regex):
971 # A comma-separated list of regexes to use for 'prev' links.
972 # Default: \bprev(ious)?\b,\bback\b,\bolder\b,\b[<←≪]\b,\b(<<|«)\b
973 #
974 # find-implementation (String):
975 # Which implementation to use to find elements to hint.
976 # javascript: Better but slower
977 # python: Slightly worse but faster
978 # Default: python
979 #
980 # hide-unmatched-rapid-hints (Bool):
981 # Controls hiding unmatched hints in rapid mode.
982 # Valid values: true, false
983 # Default: true
984 border = 1px solid #E3BE23
985 mode = letter
986 chars = aoeuidhtns
987 min-chars = 2
988 scatter = true
989 uppercase = true
990 dictionary = /usr/share/dict/words
991 auto-follow = unique-match
992 auto-follow-timeout = 0
993 next-regexes = \bnext\b,\bmore\b,\bnewer\b,\b[>→≫]\b,\b(>>|»)\b,\bcontinue\b
994 prev-regexes = \bprev(ious)?\b,\bback\b,\bolder\b,\b[<←≪]\b,\b(<<|«)\b
995 find-implementation = javascript
996 hide-unmatched-rapid-hints = true
997
998 [searchengines]
999 # Definitions of search engines which can be used via the address bar.
1000 # The searchengine named `DEFAULT` is used when `general -> auto-search`
1001 # is true and something else than a URL was entered to be opened. Other
1002 # search engines can be used by prepending the search engine name to the
1003 # search term, e.g. `:open google qutebrowser`. The string `{}` will be
1004 # replaced by the search term, use `{{` and `}}` for literal `{`/`}`
1005 # signs.
1006 DEFAULT = ${duckduckgo}
1007 duckduckgo = https://duckduckgo.com/?t=chakra&q={}
1008 ddg = ${duckduckgo}
1009 google = https://encrypted.google.com/search?q={}
1010 g = ${google}
1011 wikipedia = http://en.wikipedia.org/w/index.php?title=Special:Search&search={}
1012 wiki = ${wikipedia}
1013 pcl = http://docs.pointclouds.org/trunk/search.php?query={}
1014 std = http://en.cppreference.com/mwiki/index.php?title=Special%3ASearch&search={}
1015 cv = http://docs.opencv.org/3.1.0/index.html#gsc.tab=0&gsc.ref=more%3A3.1&gsc.q={}
1016
1017 [aliases]
1018 # Aliases for commands.
1019 # By default, no aliases are defined. Example which adds a new command
1020 # `:qtb` to open qutebrowsers website:
1021 # `qtb = open http://www.qutebrowser.org/`
1022 quit = close
1023 q = close
1024 exit = quit
1025
1026 [colors]
1027 # Colors used in the UI.
1028 # A value can be in one of the following format:
1029 # * `#RGB`/`#RRGGBB`/`#RRRGGGBBB`/`#RRRRGGGGBBBB`
1030 # * An SVG color name as specified in http://www.w3.org/TR/SVG/types.html#ColorKeywords[the W3C specification].
1031 # * transparent (no color)
1032 # * `rgb(r, g, b)` / `rgba(r, g, b, a)` (values 0-255 or percentages)
1033 # * `hsv(h, s, v)` / `hsva(h, s, v, a)` (values 0-255, hue 0-359)
1034 # * A gradient as explained in http://doc.qt.io/qt-5/stylesheet-reference.html#list-of-property-types[the Qt documentation] under ``Gradient''.
1035 # A *.system value determines the color system to use for color
1036 # interpolation between similarly-named *.start and *.stop entries,
1037 # regardless of how they are defined in the options. Valid values are
1038 # 'rgb', 'hsv', and 'hsl'.
1039 # 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].
1040 #
1041 # completion.fg (QtColor):
1042 # Text color of the completion widget.
1043 # Default: white
1044 #
1045 # completion.bg (QssColor):
1046 # Background color of the completion widget.
1047 # Default: #333333
1048 #
1049 # completion.alternate-bg (QssColor):
1050 # Alternating background color of the completion widget.
1051 # Default: #444444
1052 #
1053 # completion.category.fg (QtColor):
1054 # Foreground color of completion widget category headers.
1055 # Default: white
1056 #
1057 # completion.category.bg (QssColor):
1058 # Background color of the completion widget category headers.
1059 # Default: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #888888,
1060 # stop:1 #505050)
1061 #
1062 # completion.category.border.top (QssColor):
1063 # Top border color of the completion widget category headers.
1064 # Default: black
1065 #
1066 # completion.category.border.bottom (QssColor):
1067 # Bottom border color of the completion widget category headers.
1068 # Default: ${completion.category.border.top}
1069 #
1070 # completion.item.selected.fg (QtColor):
1071 # Foreground color of the selected completion item.
1072 # Default: black
1073 #
1074 # completion.item.selected.bg (QssColor):
1075 # Background color of the selected completion item.
1076 # Default: #e8c000
1077 #
1078 # completion.item.selected.border.top (QssColor):
1079 # Top border color of the completion widget category headers.
1080 # Default: #bbbb00
1081 #
1082 # completion.item.selected.border.bottom (QssColor):
1083 # Bottom border color of the selected completion item.
1084 # Default: ${completion.item.selected.border.top}
1085 #
1086 # completion.match.fg (QssColor):
1087 # Foreground color of the matched text in the completion.
1088 # Default: #ff4444
1089 #
1090 # completion.scrollbar.fg (QssColor):
1091 # Color of the scrollbar handle in completion view.
1092 # Default: ${completion.fg}
1093 #
1094 # completion.scrollbar.bg (QssColor):
1095 # Color of the scrollbar in completion view
1096 # Default: ${completion.bg}
1097 #
1098 # statusbar.fg (QssColor):
1099 # Foreground color of the statusbar.
1100 # Default: white
1101 #
1102 # statusbar.bg (QssColor):
1103 # Background color of the statusbar.
1104 # Default: black
1105 #
1106 # statusbar.fg.prompt (QssColor):
1107 # Foreground color of the statusbar if there is a prompt.
1108 # Default: ${statusbar.fg}
1109 #
1110 # statusbar.bg.prompt (QssColor):
1111 # Background color of the statusbar if there is a prompt.
1112 # Default: darkblue
1113 #
1114 # statusbar.fg.insert (QssColor):
1115 # Foreground color of the statusbar in insert mode.
1116 # Default: ${statusbar.fg}
1117 #
1118 # statusbar.bg.insert (QssColor):
1119 # Background color of the statusbar in insert mode.
1120 # Default: darkgreen
1121 #
1122 # statusbar.fg.command (QssColor):
1123 # Foreground color of the statusbar in command mode.
1124 # Default: ${statusbar.fg}
1125 #
1126 # statusbar.bg.command (QssColor):
1127 # Background color of the statusbar in command mode.
1128 # Default: ${statusbar.bg}
1129 #
1130 # statusbar.fg.caret (QssColor):
1131 # Foreground color of the statusbar in caret mode.
1132 # Default: ${statusbar.fg}
1133 #
1134 # statusbar.bg.caret (QssColor):
1135 # Background color of the statusbar in caret mode.
1136 # Default: purple
1137 #
1138 # statusbar.fg.caret-selection (QssColor):
1139 # Foreground color of the statusbar in caret mode with a selection
1140 # Default: ${statusbar.fg}
1141 #
1142 # statusbar.bg.caret-selection (QssColor):
1143 # Background color of the statusbar in caret mode with a selection
1144 # Default: #a12dff
1145 #
1146 # statusbar.progress.bg (QssColor):
1147 # Background color of the progress bar.
1148 # Default: white
1149 #
1150 # statusbar.url.fg (QssColor):
1151 # Default foreground color of the URL in the statusbar.
1152 # Default: ${statusbar.fg}
1153 #
1154 # statusbar.url.fg.success (QssColor):
1155 # Foreground color of the URL in the statusbar on successful load
1156 # (http).
1157 # Default: white
1158 #
1159 # statusbar.url.fg.success.https (QssColor):
1160 # Foreground color of the URL in the statusbar on successful load
1161 # (https).
1162 # Default: lime
1163 #
1164 # statusbar.url.fg.error (QssColor):
1165 # Foreground color of the URL in the statusbar on error.
1166 # Default: orange
1167 #
1168 # statusbar.url.fg.warn (QssColor):
1169 # Foreground color of the URL in the statusbar when there's a
1170 # warning.
1171 # Default: yellow
1172 #
1173 # statusbar.url.fg.hover (QssColor):
1174 # Foreground color of the URL in the statusbar for hovered links.
1175 # Default: aqua
1176 #
1177 # tabs.fg.odd (QtColor):
1178 # Foreground color of unselected odd tabs.
1179 # Default: white
1180 #
1181 # tabs.bg.odd (QtColor):
1182 # Background color of unselected odd tabs.
1183 # Default: grey
1184 #
1185 # tabs.fg.even (QtColor):
1186 # Foreground color of unselected even tabs.
1187 # Default: white
1188 #
1189 # tabs.bg.even (QtColor):
1190 # Background color of unselected even tabs.
1191 # Default: darkgrey
1192 #
1193 # tabs.fg.selected.odd (QtColor):
1194 # Foreground color of selected odd tabs.
1195 # Default: white
1196 #
1197 # tabs.bg.selected.odd (QtColor):
1198 # Background color of selected odd tabs.
1199 # Default: black
1200 #
1201 # tabs.fg.selected.even (QtColor):
1202 # Foreground color of selected even tabs.
1203 # Default: ${tabs.fg.selected.odd}
1204 #
1205 # tabs.bg.selected.even (QtColor):
1206 # Background color of selected even tabs.
1207 # Default: ${tabs.bg.selected.odd}
1208 #
1209 # tabs.bg.bar (QtColor):
1210 # Background color of the tab bar.
1211 # Default: #555555
1212 #
1213 # tabs.indicator.start (QtColor):
1214 # Color gradient start for the tab indicator.
1215 # Default: #0000aa
1216 #
1217 # tabs.indicator.stop (QtColor):
1218 # Color gradient end for the tab indicator.
1219 # Default: #00aa00
1220 #
1221 # tabs.indicator.error (QtColor):
1222 # Color for the tab indicator on errors..
1223 # Default: #ff0000
1224 #
1225 # tabs.indicator.system (ColorSystem):
1226 # Color gradient interpolation system for the tab indicator.
1227 # rgb: Interpolate in the RGB color system.
1228 # hsv: Interpolate in the HSV color system.
1229 # hsl: Interpolate in the HSL color system.
1230 # none: Don't show a gradient.
1231 # Default: rgb
1232 #
1233 # hints.fg (QssColor):
1234 # Font color for hints.
1235 # Default: black
1236 #
1237 # hints.bg (QssColor):
1238 # Background color for hints. Note that you can use a `rgba(...)`
1239 # value for transparency.
1240 # Default: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 rgba(255,
1241 # 247, 133, 0.8), stop:1 rgba(255, 197, 66, 0.8))
1242 #
1243 # hints.fg.match (QssColor):
1244 # Font color for the matched part of hints.
1245 # Default: green
1246 #
1247 # downloads.bg.bar (QssColor):
1248 # Background color for the download bar.
1249 # Default: black
1250 #
1251 # downloads.fg.start (QtColor):
1252 # Color gradient start for download text.
1253 # Default: white
1254 #
1255 # downloads.bg.start (QtColor):
1256 # Color gradient start for download backgrounds.
1257 # Default: #0000aa
1258 #
1259 # downloads.fg.stop (QtColor):
1260 # Color gradient end for download text.
1261 # Default: ${downloads.fg.start}
1262 #
1263 # downloads.bg.stop (QtColor):
1264 # Color gradient stop for download backgrounds.
1265 # Default: #00aa00
1266 #
1267 # downloads.fg.system (ColorSystem):
1268 # Color gradient interpolation system for download text.
1269 # rgb: Interpolate in the RGB color system.
1270 # hsv: Interpolate in the HSV color system.
1271 # hsl: Interpolate in the HSL color system.
1272 # none: Don't show a gradient.
1273 # Default: rgb
1274 #
1275 # downloads.bg.system (ColorSystem):
1276 # Color gradient interpolation system for download backgrounds.
1277 # rgb: Interpolate in the RGB color system.
1278 # hsv: Interpolate in the HSV color system.
1279 # hsl: Interpolate in the HSL color system.
1280 # none: Don't show a gradient.
1281 # Default: rgb
1282 #
1283 # downloads.fg.error (QtColor):
1284 # Foreground color for downloads with errors.
1285 # Default: white
1286 #
1287 # downloads.bg.error (QtColor):
1288 # Background color for downloads with errors.
1289 # Default: red
1290 #
1291 # webpage.bg (QtColor):
1292 # Background color for webpages if unset (or empty to use the
1293 # theme's color)
1294 # Default: white
1295 #
1296 # keyhint.fg (QssColor):
1297 # Text color for the keyhint widget.
1298 # Default: #FFFFFF
1299 #
1300 # keyhint.fg.suffix (CssColor):
1301 # Highlight color for keys to complete the current keychain
1302 # Default: #FFFF00
1303 #
1304 # keyhint.bg (QssColor):
1305 # Background color of the keyhint widget.
1306 # Default: rgba(0, 0, 0, 80%)
1307 #
1308 # messages.fg.error (QssColor):
1309 # Foreground color of an error message.
1310 # Default: white
1311 #
1312 # messages.bg.error (QssColor):
1313 # Background color of an error message.
1314 # Default: red
1315 #
1316 # messages.border.error (QssColor):
1317 # Border color of an error message.
1318 # Default: #bb0000
1319 #
1320 # messages.fg.warning (QssColor):
1321 # Foreground color a warning message.
1322 # Default: white
1323 #
1324 # messages.bg.warning (QssColor):
1325 # Background color of a warning message.
1326 # Default: darkorange
1327 #
1328 # messages.border.warning (QssColor):
1329 # Border color of an error message.
1330 # Default: #d47300
1331 #
1332 # messages.fg.info (QssColor):
1333 # Foreground color an info message.
1334 # Default: white
1335 #
1336 # messages.bg.info (QssColor):
1337 # Background color of an info message.
1338 # Default: black
1339 #
1340 # messages.border.info (QssColor):
1341 # Border color of an info message.
1342 # Default: #333333
1343 completion.fg = white
1344 completion.bg = #333333
1345 completion.alternate-bg = #444444
1346 completion.category.fg = white
1347 completion.category.bg = qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #888888, stop:1 #505050)
1348 completion.category.border.top = black
1349 completion.category.border.bottom = ${completion.category.border.top}
1350 completion.item.selected.fg = black
1351 completion.item.selected.bg = #e8c000
1352 completion.item.selected.border.top = #bbbb00
1353 completion.item.selected.border.bottom = ${completion.item.selected.border.top}
1354 completion.match.fg = #ff4444
1355 completion.scrollbar.fg = ${completion.fg}
1356 completion.scrollbar.bg = ${completion.bg}
1357 statusbar.fg = white
1358 statusbar.bg = black
1359 statusbar.fg.prompt = ${statusbar.fg}
1360 statusbar.bg.prompt = darkblue
1361 statusbar.fg.insert = ${statusbar.fg}
1362 statusbar.bg.insert = darkgreen
1363 statusbar.fg.command = ${statusbar.fg}
1364 statusbar.bg.command = ${statusbar.bg}
1365 statusbar.fg.caret = ${statusbar.fg}
1366 statusbar.bg.caret = purple
1367 statusbar.fg.caret-selection = ${statusbar.fg}
1368 statusbar.bg.caret-selection = #a12dff
1369 statusbar.progress.bg = white
1370 statusbar.url.fg = ${statusbar.fg}
1371 statusbar.url.fg.success = white
1372 statusbar.url.fg.success.https = lime
1373 statusbar.url.fg.error = orange
1374 statusbar.url.fg.warn = yellow
1375 statusbar.url.fg.hover = aqua
1376 tabs.fg.odd = white
1377 tabs.bg.odd = grey
1378 tabs.fg.even = white
1379 tabs.bg.even = darkgrey
1380 tabs.fg.selected.odd = white
1381 tabs.bg.selected.odd = black
1382 tabs.fg.selected.even = ${tabs.fg.selected.odd}
1383 tabs.bg.selected.even = ${tabs.bg.selected.odd}
1384 tabs.bg.bar = #555555
1385 tabs.indicator.start = #0000aa
1386 tabs.indicator.stop = #00aa00
1387 tabs.indicator.error = #ff0000
1388 tabs.indicator.system = rgb
1389 hints.fg = black
1390 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))
1391 hints.fg.match = green
1392 downloads.bg.bar = black
1393 downloads.fg.start = white
1394 downloads.bg.start = #0000aa
1395 downloads.fg.stop = ${downloads.fg.start}
1396 downloads.bg.stop = #00aa00
1397 downloads.fg.system = rgb
1398 downloads.bg.system = rgb
1399 downloads.fg.error = white
1400 downloads.bg.error = red
1401 webpage.bg = white
1402 keyhint.fg = #FFFFFF
1403 keyhint.fg.suffix = #FFFF00
1404 keyhint.bg = rgba(0, 0, 0, 80%)
1405 messages.fg.error = ${statusbar.fg}
1406 messages.bg.error = red
1407 messages.border.error = #bb0000
1408 messages.fg.warning = ${statusbar.fg}
1409 messages.bg.warning = darkorange
1410 messages.border.warning = #d47300
1411 messages.fg.info = white
1412 messages.bg.info = black
1413 messages.border.info = #333333
1414
1415 [fonts]
1416 # Fonts used for the UI, with optional style/weight/size.
1417 # * Style: `normal`/`italic`/`oblique`
1418 # * Weight: `normal`, `bold`, `100`..`900`
1419 # * Size: _number_ `px`/`pt`
1420 #
1421 # _monospace (Font):
1422 # Default monospace fonts.
1423 # Default: Terminus, Monospace, "DejaVu Sans Mono", Monaco,
1424 # "Bitstream Vera Sans Mono", "Andale Mono", "Courier New", Courier,
1425 # "Liberation Mono", monospace, Fixed, Consolas, Terminal
1426 #
1427 # completion (Font):
1428 # Font used in the completion widget.
1429 # Default: 8pt ${_monospace}
1430 #
1431 # completion.category (Font):
1432 # Font used in the completion categories.
1433 # Default: bold ${completion}
1434 #
1435 # tabbar (QtFont):
1436 # Font used in the tab bar.
1437 # Default: 8pt ${_monospace}
1438 #
1439 # statusbar (Font):
1440 # Font used in the statusbar.
1441 # Default: 8pt ${_monospace}
1442 #
1443 # downloads (Font):
1444 # Font used for the downloadbar.
1445 # Default: 8pt ${_monospace}
1446 #
1447 # hints (Font):
1448 # Font used for the hints.
1449 # Default: bold 13px ${_monospace}
1450 #
1451 # debug-console (QtFont):
1452 # Font used for the debugging console.
1453 # Default: 8pt ${_monospace}
1454 #
1455 # web-family-standard (FontFamily):
1456 # Font family for standard fonts.
1457 # Default:
1458 #
1459 # web-family-fixed (FontFamily):
1460 # Font family for fixed fonts.
1461 # Default:
1462 #
1463 # web-family-serif (FontFamily):
1464 # Font family for serif fonts.
1465 # Default:
1466 #
1467 # web-family-sans-serif (FontFamily):
1468 # Font family for sans-serif fonts.
1469 # Default:
1470 #
1471 # web-family-cursive (FontFamily):
1472 # Font family for cursive fonts.
1473 # Default:
1474 #
1475 # web-family-fantasy (FontFamily):
1476 # Font family for fantasy fonts.
1477 # Default:
1478 #
1479 # web-size-minimum (Int):
1480 # The hard minimum font size.
1481 # Default:
1482 #
1483 # web-size-minimum-logical (Int):
1484 # The minimum logical font size that is applied when zooming out.
1485 # Default:
1486 #
1487 # web-size-default (Int):
1488 # The default font size for regular text.
1489 # Default:
1490 #
1491 # web-size-default-fixed (Int):
1492 # The default font size for fixed-pitch text.
1493 # Default:
1494 #
1495 # keyhint (Font):
1496 # Font used in the keyhint widget.
1497 # Default: 8pt ${_monospace}
1498 #
1499 # messages.error (Font):
1500 # Font used for error messages.
1501 # Default: 8pt ${_monospace}
1502 #
1503 # messages.warning (Font):
1504 # Font used for warning messages.
1505 # Default: 8pt ${_monospace}
1506 #
1507 # messages.info (Font):
1508 # Font used for info messages.
1509 # Default: 8pt ${_monospace}
1510 _monospace = Terminus, Monospace, "DejaVu Sans Mono", Monaco, "Bitstream Vera Sans Mono", "Andale Mono", "Liberation Mono", "Courier New", Courier, monospace, Fixed, Consolas, Terminal
1511 completion = 8pt ${_monospace}
1512 completion.category = bold ${completion}
1513 tabbar = 8pt ${_monospace}
1514 statusbar = 8pt ${_monospace}
1515 downloads = 8pt ${_monospace}
1516 hints = bold 12px ${_monospace}
1517 debug-console = 8pt ${_monospace}
1518 web-family-standard =
1519 web-family-fixed =
1520 web-family-serif =
1521 web-family-sans-serif =
1522 web-family-cursive =
1523 web-family-fantasy =
1524 web-size-minimum =
1525 web-size-minimum-logical =
1526 web-size-default =
1527 web-size-default-fixed =
1528 keyhint = 8pt ${_monospace}
1529 messages.error = 8pt ${_monospace}
1530 messages.warning = 8pt ${_monospace}
1531 messages.info = 8pt ${_monospace}