qutebrowser upgrade to 0.5.0
This commit is contained in:
parent
ada9953257
commit
5a85dc5377
@ -2,3 +2,4 @@ https://github.com/nixos/nixpkgs/issues?utf8=%E2%9C%93&q=sort%3Aupdated-desc Iss
|
|||||||
https://github.com/The-Compiler/qutebrowser/issues?utf8=%E2%9C%93&q=sort%3Aupdated-desc+ Issues · The-Compiler/qutebrowser
|
https://github.com/The-Compiler/qutebrowser/issues?utf8=%E2%9C%93&q=sort%3Aupdated-desc+ Issues · The-Compiler/qutebrowser
|
||||||
http://jpsubbers.web44.net/Japanese-Subtitles/@Mains/ Index of /Japanese-Subtitles/@Mains
|
http://jpsubbers.web44.net/Japanese-Subtitles/@Mains/ Index of /Japanese-Subtitles/@Mains
|
||||||
http://compile.logic.tuwien.ac.at/job/gapt%20extended%20testing/lastBuild/console gapt extended testing console
|
http://compile.logic.tuwien.ac.at/job/gapt%20extended%20testing/lastBuild/console gapt extended testing console
|
||||||
|
http://www.algebra.tuwien.ac.at/panholzer/algdm_2015.html Algebra und Diskrete Mathematik (Panholzer)
|
||||||
|
@ -29,6 +29,14 @@
|
|||||||
# with Shift. For special keys (with `<>`-signs), you need to explicitly add
|
# with Shift. For special keys (with `<>`-signs), you need to explicitly add
|
||||||
# `Shift-` to match a key pressed with shift. You can bind multiple commands
|
# `Shift-` to match a key pressed with shift. You can bind multiple commands
|
||||||
# by separating them with `;;`.
|
# by separating them with `;;`.
|
||||||
|
#
|
||||||
|
# Note that default keybindings are always bound, and need to be explicitly
|
||||||
|
# unbound if you wish to remove them:
|
||||||
|
#
|
||||||
|
# <unbound>
|
||||||
|
# keychain
|
||||||
|
# keychain2
|
||||||
|
# ...
|
||||||
|
|
||||||
[!normal]
|
[!normal]
|
||||||
|
|
||||||
@ -332,7 +340,7 @@ download
|
|||||||
download-cancel
|
download-cancel
|
||||||
ad
|
ad
|
||||||
|
|
||||||
download-remove --all
|
download-clear
|
||||||
cd
|
cd
|
||||||
|
|
||||||
view-source
|
view-source
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
[general]
|
[general]
|
||||||
# General/miscellaneous options.
|
# General/miscellaneous options.
|
||||||
#
|
#
|
||||||
# ignore-case:
|
# ignore-case (IgnoreCase):
|
||||||
# Whether to find text on a page case-insensitively.
|
# Whether to find text on a page case-insensitively.
|
||||||
# true: Search case-insensitively
|
# true: Search case-insensitively
|
||||||
# false: Search case-sensitively
|
# false: Search case-sensitively
|
||||||
@ -41,14 +41,14 @@
|
|||||||
#
|
#
|
||||||
# startpage (List):
|
# startpage (List):
|
||||||
# The default page(s) to open at the start, separated by commas.
|
# The default page(s) to open at the start, separated by commas.
|
||||||
# Default: https://www.duckduckgo.com
|
# Default: https://duckduckgo.com
|
||||||
#
|
#
|
||||||
# default-page (FuzzyUrl):
|
# default-page (FuzzyUrl):
|
||||||
# The page to open if :open -t/-b/-w is used without URL. Use
|
# The page to open if :open -t/-b/-w is used without URL. Use
|
||||||
# `about:blank` for a blank page.
|
# `about:blank` for a blank page.
|
||||||
# Default: ${startpage}
|
# Default: ${startpage}
|
||||||
#
|
#
|
||||||
# auto-search:
|
# auto-search (AutoSearch):
|
||||||
# Whether to start a search when something else than a URL is
|
# Whether to start a search when something else than a URL is
|
||||||
# entered.
|
# entered.
|
||||||
# naive: Use simple/naive check.
|
# naive: Use simple/naive check.
|
||||||
@ -67,8 +67,9 @@
|
|||||||
#
|
#
|
||||||
# editor (ShellCommand):
|
# editor (ShellCommand):
|
||||||
# The editor (and arguments) to use for the `open-editor` command.
|
# The editor (and arguments) to use for the `open-editor` command.
|
||||||
# Use `{}` for the filename. The value gets split like in a shell,
|
# The arguments get split like in a shell, so you can use `"` or `'`
|
||||||
# so you can use `"` or `'` to quote arguments.
|
# to quote them.
|
||||||
|
# `{}` gets replaced by the filename of the file to be edited.
|
||||||
# Default: gvim -f "{}"
|
# Default: gvim -f "{}"
|
||||||
#
|
#
|
||||||
# editor-encoding (Encoding):
|
# editor-encoding (Encoding):
|
||||||
@ -115,7 +116,7 @@
|
|||||||
# used.
|
# used.
|
||||||
# Default:
|
# Default:
|
||||||
#
|
#
|
||||||
# new-instance-open-target:
|
# new-instance-open-target (String):
|
||||||
# How to open links in an existing instance if a new one is
|
# How to open links in an existing instance if a new one is
|
||||||
# launched.
|
# launched.
|
||||||
# tab: Open a new tab in the existing window and activate the
|
# tab: Open a new tab in the existing window and activate the
|
||||||
@ -129,20 +130,28 @@
|
|||||||
# window: Open in a new window.
|
# window: Open in a new window.
|
||||||
# Default: tab
|
# Default: tab
|
||||||
#
|
#
|
||||||
# log-javascript-console (Bool):
|
# log-javascript-console (String):
|
||||||
# Whether to log javascript console messages.
|
# How to log javascript console messages.
|
||||||
# Valid values: true, false
|
# none: Don't log messages.
|
||||||
# Default: false
|
# debug: Log messages with debug level.
|
||||||
|
# info: Log messages with info level.
|
||||||
|
# Default: debug
|
||||||
#
|
#
|
||||||
# save-session (Bool):
|
# save-session (Bool):
|
||||||
# Whether to always save the open pages.
|
# Whether to always save the open pages.
|
||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: false
|
# Default: false
|
||||||
#
|
#
|
||||||
# session-default-name:
|
# session-default-name (SessionName):
|
||||||
# The name of the session to save by default, or empty for the last
|
# The name of the session to save by default, or empty for the last
|
||||||
# loaded session.
|
# loaded session.
|
||||||
# Default:
|
# Default:
|
||||||
|
#
|
||||||
|
# url-incdec-segments (FlagList):
|
||||||
|
# The URL segments where `:navigate increment/decrement` will search
|
||||||
|
# for a number.
|
||||||
|
# Valid values: host, path, query, anchor
|
||||||
|
# Default: path,query
|
||||||
ignore-case = smart
|
ignore-case = smart
|
||||||
wrap-search = true
|
wrap-search = true
|
||||||
startpage = https://www.duckduckgo.com
|
startpage = https://www.duckduckgo.com
|
||||||
@ -159,9 +168,10 @@ xss-auditing = false
|
|||||||
site-specific-quirks = true
|
site-specific-quirks = true
|
||||||
default-encoding =
|
default-encoding =
|
||||||
new-instance-open-target = tab
|
new-instance-open-target = tab
|
||||||
log-javascript-console = false
|
log-javascript-console = none
|
||||||
save-session = true
|
save-session = true
|
||||||
session-default-name =
|
session-default-name =
|
||||||
|
url-incdec-segments = path,query
|
||||||
|
|
||||||
[ui]
|
[ui]
|
||||||
# General options related to the user interface.
|
# General options related to the user interface.
|
||||||
@ -189,7 +199,7 @@ session-default-name =
|
|||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: false
|
# Default: false
|
||||||
#
|
#
|
||||||
# confirm-quit:
|
# confirm-quit (ConfirmQuit):
|
||||||
# Whether to confirm quitting the application.
|
# Whether to confirm quitting the application.
|
||||||
# always: Always show a confirmation.
|
# always: Always show a confirmation.
|
||||||
# multiple-tabs: Show a confirmation if multiple tabs are
|
# multiple-tabs: Show a confirmation if multiple tabs are
|
||||||
@ -215,7 +225,7 @@ session-default-name =
|
|||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: false
|
# Default: false
|
||||||
#
|
#
|
||||||
# user-stylesheet:
|
# user-stylesheet (UserStyleSheet):
|
||||||
# User stylesheet to use (absolute filename, filename relative to
|
# User stylesheet to use (absolute filename, filename relative to
|
||||||
# the config directory or CSS string). Will expand environment
|
# the config directory or CSS string). Will expand environment
|
||||||
# variables.
|
# variables.
|
||||||
@ -230,10 +240,10 @@ session-default-name =
|
|||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: false
|
# Default: false
|
||||||
#
|
#
|
||||||
# remove-finished-downloads (Bool):
|
# remove-finished-downloads (Int):
|
||||||
# Whether to remove finished downloads automatically.
|
# Number of milliseconds to wait before removing finished downloads.
|
||||||
# Valid values: true, false
|
# Will not be removed if value is -1.
|
||||||
# Default: false
|
# Default: -1
|
||||||
#
|
#
|
||||||
# hide-statusbar (Bool):
|
# hide-statusbar (Bool):
|
||||||
# Whether to hide the statusbar unless a message is shown.
|
# Whether to hide the statusbar unless a message is shown.
|
||||||
@ -253,6 +263,7 @@ session-default-name =
|
|||||||
# * `{title_sep}`: The string ` - ` if a title is set, empty
|
# * `{title_sep}`: The string ` - ` if a title is set, empty
|
||||||
# otherwise.
|
# otherwise.
|
||||||
# * `{id}`: The internal window ID of this window.
|
# * `{id}`: The internal window ID of this window.
|
||||||
|
# * `{scroll_pos}`: The page scroll position.
|
||||||
# Default: {perc}{title}{title_sep}qutebrowser
|
# Default: {perc}{title}{title_sep}qutebrowser
|
||||||
#
|
#
|
||||||
# hide-mouse-cursor (Bool):
|
# hide-mouse-cursor (Bool):
|
||||||
@ -264,6 +275,11 @@ session-default-name =
|
|||||||
# Use standard JavaScript modal dialog for alert() and confirm()
|
# Use standard JavaScript modal dialog for alert() and confirm()
|
||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: false
|
# Default: false
|
||||||
|
#
|
||||||
|
# hide-wayland-decoration (Bool):
|
||||||
|
# Hide the window decoration when using wayland (requires restart)
|
||||||
|
# Valid values: true, false
|
||||||
|
# Default: false
|
||||||
zoom-levels = 25%,33%,50%,67%,75%,90%,100%,110%,125%,150%,175%,200%,250%,300%,400%,500%
|
zoom-levels = 25%,33%,50%,67%,75%,90%,100%,110%,125%,150%,175%,200%,250%,300%,400%,500%
|
||||||
default-zoom = 100%
|
default-zoom = 100%
|
||||||
downloads-position = top
|
downloads-position = top
|
||||||
@ -276,12 +292,13 @@ frame-flattening = false
|
|||||||
user-stylesheet = ::-webkit-scrollbar { width: 0px; height: 0px; }
|
user-stylesheet = ::-webkit-scrollbar { width: 0px; height: 0px; }
|
||||||
css-media-type =
|
css-media-type =
|
||||||
smooth-scrolling = false
|
smooth-scrolling = false
|
||||||
remove-finished-downloads = false
|
remove-finished-downloads = -1
|
||||||
hide-statusbar = false
|
hide-statusbar = false
|
||||||
statusbar-padding = 1,1,0,0
|
statusbar-padding = 1,1,0,0
|
||||||
window-title-format = {perc}{title}{title_sep}qutebrowser
|
window-title-format = {perc}{title}{title_sep}qutebrowser
|
||||||
hide-mouse-cursor = false
|
hide-mouse-cursor = false
|
||||||
modal-js-dialog = false
|
modal-js-dialog = false
|
||||||
|
hide-wayland-decoration = false
|
||||||
|
|
||||||
[network]
|
[network]
|
||||||
# Settings related to the network.
|
# Settings related to the network.
|
||||||
@ -295,7 +312,7 @@ modal-js-dialog = false
|
|||||||
# Value to send in the `accept-language` header.
|
# Value to send in the `accept-language` header.
|
||||||
# Default: en-US,en
|
# Default: en-US,en
|
||||||
#
|
#
|
||||||
# referer-header (Referer):
|
# referer-header (String):
|
||||||
# Send the Referer header
|
# Send the Referer header
|
||||||
# always: Always send.
|
# always: Always send.
|
||||||
# never: Never send; this is not recommended, as some sites may
|
# never: Never send; this is not recommended, as some sites may
|
||||||
@ -304,11 +321,11 @@ modal-js-dialog = false
|
|||||||
# protect your privacy, but shouldn't break any sites.
|
# protect your privacy, but shouldn't break any sites.
|
||||||
# Default: same-domain
|
# Default: same-domain
|
||||||
#
|
#
|
||||||
# user-agent:
|
# user-agent (UserAgent):
|
||||||
# User agent to send. Empty to send the default.
|
# User agent to send. Empty to send the default.
|
||||||
# Default:
|
# Default:
|
||||||
#
|
#
|
||||||
# proxy:
|
# proxy (Proxy):
|
||||||
# The proxy to use.
|
# The proxy to use.
|
||||||
# In addition to the listed values, you can use a `socks://...` or
|
# In addition to the listed values, you can use a `socks://...` or
|
||||||
# `http://...` URL.
|
# `http://...` URL.
|
||||||
@ -347,14 +364,14 @@ dns-prefetch = true
|
|||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: true
|
# Default: true
|
||||||
#
|
#
|
||||||
# download-path-suggestion:
|
# download-path-suggestion (String):
|
||||||
# What to display in the download filename input.
|
# What to display in the download filename input.
|
||||||
# path: Show only the download path.
|
# path: Show only the download path.
|
||||||
# filename: Show only download filename.
|
# filename: Show only download filename.
|
||||||
# both: Show download path and filename.
|
# both: Show download path and filename.
|
||||||
# Default: path
|
# Default: path
|
||||||
#
|
#
|
||||||
# timestamp-format (String):
|
# timestamp-format (TimestampTemplate):
|
||||||
# How to format timestamps (e.g. for history)
|
# How to format timestamps (e.g. for history)
|
||||||
# Default: %Y-%m-%d
|
# Default: %Y-%m-%d
|
||||||
#
|
#
|
||||||
@ -389,6 +406,14 @@ dns-prefetch = true
|
|||||||
# size if there are no scrollbars.
|
# size if there are no scrollbars.
|
||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: false
|
# Default: false
|
||||||
|
#
|
||||||
|
# scrollbar-width (Int):
|
||||||
|
# Width of the scrollbar in the completion window (in px).
|
||||||
|
# Default: 12
|
||||||
|
#
|
||||||
|
# scrollbar-padding (Int):
|
||||||
|
# Padding of scrollbar handle in completion window (in px).
|
||||||
|
# Default: 2
|
||||||
auto-open = true
|
auto-open = true
|
||||||
download-path-suggestion = path
|
download-path-suggestion = path
|
||||||
timestamp-format = %Y-%m-%d
|
timestamp-format = %Y-%m-%d
|
||||||
@ -398,6 +423,8 @@ cmd-history-max-items = 100
|
|||||||
web-history-max-items = 1000
|
web-history-max-items = 1000
|
||||||
quick-complete = true
|
quick-complete = true
|
||||||
shrink = false
|
shrink = false
|
||||||
|
scrollbar-width = 12
|
||||||
|
scrollbar-padding = 2
|
||||||
|
|
||||||
[input]
|
[input]
|
||||||
# Options related to input modes.
|
# Options related to input modes.
|
||||||
@ -427,7 +454,7 @@ shrink = false
|
|||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: false
|
# Default: false
|
||||||
#
|
#
|
||||||
# forward-unbound-keys:
|
# forward-unbound-keys (String):
|
||||||
# Whether to forward unbound keys to the webview in normal mode.
|
# Whether to forward unbound keys to the webview in normal mode.
|
||||||
# all: Forward all unbound keys.
|
# all: Forward all unbound keys.
|
||||||
# auto: Forward unbound non-alphanumeric keys.
|
# auto: Forward unbound non-alphanumeric keys.
|
||||||
@ -479,14 +506,14 @@ mouse-zoom-divider = 512
|
|||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: false
|
# Default: false
|
||||||
#
|
#
|
||||||
# select-on-remove:
|
# select-on-remove (SelectOnRemove):
|
||||||
# Which tab to select when the focused tab is removed.
|
# Which tab to select when the focused tab is removed.
|
||||||
# left: Select the tab on the left.
|
# left: Select the tab on the left.
|
||||||
# right: Select the tab on the right.
|
# right: Select the tab on the right.
|
||||||
# previous: Select the previously selected tab.
|
# previous: Select the previously selected tab.
|
||||||
# Default: right
|
# Default: right
|
||||||
#
|
#
|
||||||
# new-tab-position:
|
# new-tab-position (NewTabPosition):
|
||||||
# How new tabs are positioned.
|
# How new tabs are positioned.
|
||||||
# left: On the left of the current tab.
|
# left: On the left of the current tab.
|
||||||
# right: On the right of the current tab.
|
# right: On the right of the current tab.
|
||||||
@ -494,7 +521,7 @@ mouse-zoom-divider = 512
|
|||||||
# last: At the right end.
|
# last: At the right end.
|
||||||
# Default: right
|
# Default: right
|
||||||
#
|
#
|
||||||
# new-tab-position-explicit:
|
# new-tab-position-explicit (NewTabPosition):
|
||||||
# How new tabs opened explicitly are positioned.
|
# How new tabs opened explicitly are positioned.
|
||||||
# left: On the left of the current tab.
|
# left: On the left of the current tab.
|
||||||
# right: On the right of the current tab.
|
# right: On the right of the current tab.
|
||||||
@ -502,7 +529,7 @@ mouse-zoom-divider = 512
|
|||||||
# last: At the right end.
|
# last: At the right end.
|
||||||
# Default: last
|
# Default: last
|
||||||
#
|
#
|
||||||
# last-close:
|
# last-close (String):
|
||||||
# Behavior when the last tab is closed.
|
# Behavior when the last tab is closed.
|
||||||
# ignore: Don't do anything.
|
# ignore: Don't do anything.
|
||||||
# blank: Load a blank page.
|
# blank: Load a blank page.
|
||||||
@ -511,7 +538,7 @@ mouse-zoom-divider = 512
|
|||||||
# close: Close the window.
|
# close: Close the window.
|
||||||
# Default: ignore
|
# Default: ignore
|
||||||
#
|
#
|
||||||
# show (TabBarShow):
|
# show (String):
|
||||||
# When to show the tab bar
|
# When to show the tab bar
|
||||||
# always: Always show the tab bar.
|
# always: Always show the tab bar.
|
||||||
# never: Always hide the tab bar.
|
# never: Always hide the tab bar.
|
||||||
@ -534,7 +561,7 @@ mouse-zoom-divider = 512
|
|||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: true
|
# Default: true
|
||||||
#
|
#
|
||||||
# close-mouse-button:
|
# close-mouse-button (String):
|
||||||
# On which mouse button to close tabs.
|
# On which mouse button to close tabs.
|
||||||
# right: Close tabs on right-click.
|
# right: Close tabs on right-click.
|
||||||
# middle: Close tabs on middle-click.
|
# middle: Close tabs on middle-click.
|
||||||
@ -575,8 +602,14 @@ mouse-zoom-divider = 512
|
|||||||
# otherwise.
|
# otherwise.
|
||||||
# * `{index}`: The index of this tab.
|
# * `{index}`: The index of this tab.
|
||||||
# * `{id}`: The internal tab ID of this tab.
|
# * `{id}`: The internal tab ID of this tab.
|
||||||
|
# * `{scroll_pos}`: The page scroll position.
|
||||||
# Default: {index}: {title}
|
# Default: {index}: {title}
|
||||||
#
|
#
|
||||||
|
# title-alignment (TextAlignment):
|
||||||
|
# Alignment of the text inside of tabs
|
||||||
|
# Valid values: left, right, center
|
||||||
|
# Default: left
|
||||||
|
#
|
||||||
# mousewheel-tab-switching (Bool):
|
# mousewheel-tab-switching (Bool):
|
||||||
# Switch between tabs using the mouse wheel.
|
# Switch between tabs using the mouse wheel.
|
||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
@ -605,6 +638,7 @@ width = 20%
|
|||||||
indicator-width = 3
|
indicator-width = 3
|
||||||
tabs-are-windows = false
|
tabs-are-windows = false
|
||||||
title-format = {index}: {title}
|
title-format = {index}: {title}
|
||||||
|
title-alignment = left
|
||||||
mousewheel-tab-switching = true
|
mousewheel-tab-switching = true
|
||||||
padding = 0,0,5,5
|
padding = 0,0,5,5
|
||||||
indicator-padding = 2,2,0,4
|
indicator-padding = 2,2,0,4
|
||||||
@ -777,7 +811,7 @@ cache-size = 52428800
|
|||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: true
|
# Default: true
|
||||||
#
|
#
|
||||||
# cookies-accept:
|
# cookies-accept (String):
|
||||||
# Control which cookies to accept.
|
# Control which cookies to accept.
|
||||||
# all: Accept all cookies.
|
# all: Accept all cookies.
|
||||||
# no-3rdparty: Accept cookies from the same origin only.
|
# no-3rdparty: Accept cookies from the same origin only.
|
||||||
@ -805,6 +839,21 @@ cache-size = 52428800
|
|||||||
# Whether host blocking is enabled.
|
# Whether host blocking is enabled.
|
||||||
# Valid values: true, false
|
# Valid values: true, false
|
||||||
# Default: true
|
# Default: true
|
||||||
|
#
|
||||||
|
# host-blocking-whitelist (List):
|
||||||
|
# List of domains that should always be loaded, despite being
|
||||||
|
# ad-blocked.
|
||||||
|
# Domains may contain * and ? wildcards and are otherwise required
|
||||||
|
# to exactly match the requested domain.
|
||||||
|
# Local domains are always exempt from hostblocking.
|
||||||
|
# Default: piwik.org
|
||||||
|
#
|
||||||
|
# enable-pdfjs (Bool):
|
||||||
|
# Enable pdf.js to view PDF files in the browser.
|
||||||
|
# Note that the files can still be downloaded by clicking the
|
||||||
|
# download button in the pdf.js viewer.
|
||||||
|
# Valid values: true, false
|
||||||
|
# Default: false
|
||||||
allow-images = true
|
allow-images = true
|
||||||
allow-javascript = true
|
allow-javascript = true
|
||||||
allow-plugins = false
|
allow-plugins = false
|
||||||
@ -824,6 +873,8 @@ cookies-accept = no-3rdparty
|
|||||||
cookies-store = true
|
cookies-store = true
|
||||||
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
|
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
|
||||||
host-blocking-enabled = true
|
host-blocking-enabled = true
|
||||||
|
host-blocking-whitelist = piwik.org
|
||||||
|
enable-pdfjs = false
|
||||||
|
|
||||||
[hints]
|
[hints]
|
||||||
# Hinting settings.
|
# Hinting settings.
|
||||||
@ -836,7 +887,7 @@ host-blocking-enabled = true
|
|||||||
# Opacity for hints.
|
# Opacity for hints.
|
||||||
# Default: 0.7
|
# Default: 0.7
|
||||||
#
|
#
|
||||||
# mode:
|
# mode (String):
|
||||||
# Mode to use for hints.
|
# Mode to use for hints.
|
||||||
# number: Use numeric hints.
|
# number: Use numeric hints.
|
||||||
# letter: Use the chars in the hints -> chars setting.
|
# letter: Use the chars in the hints -> chars setting.
|
||||||
@ -847,7 +898,7 @@ host-blocking-enabled = true
|
|||||||
# Default: asdfghjkl
|
# Default: asdfghjkl
|
||||||
#
|
#
|
||||||
# min-chars (Int):
|
# min-chars (Int):
|
||||||
# Mininum number of chars used for hint strings.
|
# Minimum number of chars used for hint strings.
|
||||||
# Default: 1
|
# Default: 1
|
||||||
#
|
#
|
||||||
# scatter (Bool):
|
# scatter (Bool):
|
||||||
@ -965,12 +1016,20 @@ DEFAULT = https://duckduckgo.com/?q={}
|
|||||||
# Foreground color of the matched text in the completion.
|
# Foreground color of the matched text in the completion.
|
||||||
# Default: #ff4444
|
# Default: #ff4444
|
||||||
#
|
#
|
||||||
|
# completion.scrollbar.fg (QssColor):
|
||||||
|
# Color of the scrollbar handle in completion view.
|
||||||
|
# Default: ${completion.fg}
|
||||||
|
#
|
||||||
|
# completion.scrollbar.bg (QssColor):
|
||||||
|
# Color of the scrollbar in completion view
|
||||||
|
# Default: ${completion.bg}
|
||||||
|
#
|
||||||
# statusbar.fg (QssColor):
|
# statusbar.fg (QssColor):
|
||||||
# Foreground color of the statusbar.
|
# Foreground color of the statusbar.
|
||||||
# Default: white
|
# Default: white
|
||||||
#
|
#
|
||||||
# statusbar.bg (QssColor):
|
# statusbar.bg (QssColor):
|
||||||
# Foreground color of the statusbar.
|
# Background color of the statusbar.
|
||||||
# Default: black
|
# Default: black
|
||||||
#
|
#
|
||||||
# statusbar.fg.error (QssColor):
|
# statusbar.fg.error (QssColor):
|
||||||
@ -1038,7 +1097,13 @@ DEFAULT = https://duckduckgo.com/?q={}
|
|||||||
# Default: ${statusbar.fg}
|
# Default: ${statusbar.fg}
|
||||||
#
|
#
|
||||||
# statusbar.url.fg.success (QssColor):
|
# statusbar.url.fg.success (QssColor):
|
||||||
# Foreground color of the URL in the statusbar on successful load.
|
# Foreground color of the URL in the statusbar on successful load
|
||||||
|
# (http).
|
||||||
|
# Default: white
|
||||||
|
#
|
||||||
|
# statusbar.url.fg.success.https (QssColor):
|
||||||
|
# Foreground color of the URL in the statusbar on successful load
|
||||||
|
# (https).
|
||||||
# Default: lime
|
# Default: lime
|
||||||
#
|
#
|
||||||
# statusbar.url.fg.error (QssColor):
|
# statusbar.url.fg.error (QssColor):
|
||||||
@ -1070,14 +1135,22 @@ DEFAULT = https://duckduckgo.com/?q={}
|
|||||||
# Background color of unselected even tabs.
|
# Background color of unselected even tabs.
|
||||||
# Default: darkgrey
|
# Default: darkgrey
|
||||||
#
|
#
|
||||||
# tabs.fg.selected (QtColor):
|
# tabs.fg.selected.odd (QtColor):
|
||||||
# Foreground color of selected tabs.
|
# Foreground color of selected odd tabs.
|
||||||
# Default: white
|
# Default: white
|
||||||
#
|
#
|
||||||
# tabs.bg.selected (QtColor):
|
# tabs.bg.selected.odd (QtColor):
|
||||||
# Background color of selected tabs.
|
# Background color of selected odd tabs.
|
||||||
# Default: black
|
# Default: black
|
||||||
#
|
#
|
||||||
|
# tabs.fg.selected.even (QtColor):
|
||||||
|
# Foreground color of selected even tabs.
|
||||||
|
# Default: ${tabs.fg.selected.odd}
|
||||||
|
#
|
||||||
|
# tabs.bg.selected.even (QtColor):
|
||||||
|
# Background color of selected even tabs.
|
||||||
|
# Default: ${tabs.bg.selected.odd}
|
||||||
|
#
|
||||||
# tabs.bg.bar (QtColor):
|
# tabs.bg.bar (QtColor):
|
||||||
# Background color of the tab bar.
|
# Background color of the tab bar.
|
||||||
# Default: #555555
|
# Default: #555555
|
||||||
@ -1094,11 +1167,12 @@ DEFAULT = https://duckduckgo.com/?q={}
|
|||||||
# Color for the tab indicator on errors..
|
# Color for the tab indicator on errors..
|
||||||
# Default: #ff0000
|
# Default: #ff0000
|
||||||
#
|
#
|
||||||
# tabs.indicator.system:
|
# tabs.indicator.system (ColorSystem):
|
||||||
# Color gradient interpolation system for the tab indicator.
|
# Color gradient interpolation system for the tab indicator.
|
||||||
# rgb: Interpolate in the RGB color system.
|
# rgb: Interpolate in the RGB color system.
|
||||||
# hsv: Interpolate in the HSV color system.
|
# hsv: Interpolate in the HSV color system.
|
||||||
# hsl: Interpolate in the HSL color system.
|
# hsl: Interpolate in the HSL color system.
|
||||||
|
# none: Don't show a gradient.
|
||||||
# Default: rgb
|
# Default: rgb
|
||||||
#
|
#
|
||||||
# hints.fg (CssColor):
|
# hints.fg (CssColor):
|
||||||
@ -1134,18 +1208,20 @@ DEFAULT = https://duckduckgo.com/?q={}
|
|||||||
# Color gradient stop for download backgrounds.
|
# Color gradient stop for download backgrounds.
|
||||||
# Default: #00aa00
|
# Default: #00aa00
|
||||||
#
|
#
|
||||||
# downloads.fg.system:
|
# downloads.fg.system (ColorSystem):
|
||||||
# Color gradient interpolation system for download text.
|
# Color gradient interpolation system for download text.
|
||||||
# rgb: Interpolate in the RGB color system.
|
# rgb: Interpolate in the RGB color system.
|
||||||
# hsv: Interpolate in the HSV color system.
|
# hsv: Interpolate in the HSV color system.
|
||||||
# hsl: Interpolate in the HSL color system.
|
# hsl: Interpolate in the HSL color system.
|
||||||
|
# none: Don't show a gradient.
|
||||||
# Default: rgb
|
# Default: rgb
|
||||||
#
|
#
|
||||||
# downloads.bg.system:
|
# downloads.bg.system (ColorSystem):
|
||||||
# Color gradient interpolation system for download backgrounds.
|
# Color gradient interpolation system for download backgrounds.
|
||||||
# rgb: Interpolate in the RGB color system.
|
# rgb: Interpolate in the RGB color system.
|
||||||
# hsv: Interpolate in the HSV color system.
|
# hsv: Interpolate in the HSV color system.
|
||||||
# hsl: Interpolate in the HSL color system.
|
# hsl: Interpolate in the HSL color system.
|
||||||
|
# none: Don't show a gradient.
|
||||||
# Default: rgb
|
# Default: rgb
|
||||||
#
|
#
|
||||||
# downloads.fg.error (QtColor):
|
# downloads.fg.error (QtColor):
|
||||||
@ -1172,6 +1248,8 @@ completion.item.selected.bg = #e8c000
|
|||||||
completion.item.selected.border.top = #bbbb00
|
completion.item.selected.border.top = #bbbb00
|
||||||
completion.item.selected.border.bottom = ${completion.item.selected.border.top}
|
completion.item.selected.border.bottom = ${completion.item.selected.border.top}
|
||||||
completion.match.fg = #ff4444
|
completion.match.fg = #ff4444
|
||||||
|
completion.scrollbar.fg = ${completion.fg}
|
||||||
|
completion.scrollbar.bg = ${completion.bg}
|
||||||
statusbar.fg = white
|
statusbar.fg = white
|
||||||
statusbar.bg = black
|
statusbar.bg = black
|
||||||
statusbar.fg.error = ${statusbar.fg}
|
statusbar.fg.error = ${statusbar.fg}
|
||||||
@ -1191,6 +1269,7 @@ statusbar.bg.caret-selection = #a12dff
|
|||||||
statusbar.progress.bg = white
|
statusbar.progress.bg = white
|
||||||
statusbar.url.fg = ${statusbar.fg}
|
statusbar.url.fg = ${statusbar.fg}
|
||||||
statusbar.url.fg.success = lime
|
statusbar.url.fg.success = lime
|
||||||
|
statusbar.url.fg.success.https = lime
|
||||||
statusbar.url.fg.error = orange
|
statusbar.url.fg.error = orange
|
||||||
statusbar.url.fg.warn = yellow
|
statusbar.url.fg.warn = yellow
|
||||||
statusbar.url.fg.hover = aqua
|
statusbar.url.fg.hover = aqua
|
||||||
@ -1198,8 +1277,10 @@ tabs.fg.odd = white
|
|||||||
tabs.bg.odd = grey
|
tabs.bg.odd = grey
|
||||||
tabs.fg.even = white
|
tabs.fg.even = white
|
||||||
tabs.bg.even = darkgrey
|
tabs.bg.even = darkgrey
|
||||||
tabs.fg.selected = white
|
tabs.fg.selected.odd = white
|
||||||
tabs.bg.selected = black
|
tabs.bg.selected.odd = black
|
||||||
|
tabs.fg.selected.even = ${tabs.fg.selected.odd}
|
||||||
|
tabs.bg.selected.even = ${tabs.bg.selected.odd}
|
||||||
tabs.bg.bar = #555555
|
tabs.bg.bar = #555555
|
||||||
tabs.indicator.start = #0000aa
|
tabs.indicator.start = #0000aa
|
||||||
tabs.indicator.stop = #00aa00
|
tabs.indicator.stop = #00aa00
|
||||||
|
Loading…
Reference in New Issue
Block a user