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