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