You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1595 lines
49KB

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