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