Skip to content
Snippets Groups Projects
Commit efec73ab authored by James Vasile's avatar James Vasile
Browse files

Qutebrowser config

 * Enable layering gui settings on top of config
 * Add dark mode
 * adjust user agent string
 * changelog display level, make it less chatty
parent c6530736
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@
## This is here so configs done via the GUI are still loaded.
## Remove it to not load settings done via the GUI.
# config.load_autoconfig(True)
config.load_autoconfig(True)
## Aliases for commands. The keys of the given dictionary are the
## aliases, while the values are the commands they map to.
......@@ -77,7 +77,7 @@
## - minor: Show changelog for major and minor upgrades (e.g. v2.0.0 -> v2.1.0).
## - patch: Show changelog for major, minor and patch upgrades (e.g. v2.0.0 -> v2.0.1).
## - never: Never show changelog after upgrades.
# c.changelog_after_upgrade = 'minor'
# c.changelog_after_upgrade = 'major'
## Background color of the completion widget category headers.
## Type: QssColor
......@@ -561,7 +561,7 @@
## - auto: Use the system-wide color scheme setting.
## - light: Force a light theme.
## - dark: Force a dark theme.
# c.colors.webpage.preferred_color_scheme = 'auto'
c.colors.webpage.preferred_color_scheme = 'dark'
## Number of commands to save in the command history. 0: no history / -1:
## unlimited
......@@ -858,6 +858,10 @@
## Type: FormatString
# c.content.headers.user_agent = 'Mozilla/5.0 ({os_info}) AppleWebKit/{webkit_version} (KHTML, like Gecko) {qt_key}/{qt_version} {upstream_browser_key}/{upstream_browser_version} Safari/{webkit_version}'
# I am fibbing about the user agent string because even though I am
# not using Firefox, I want the web to continue to care about Firefox
c.content.headers.user_agent = 'Mozilla/5.0 (X11; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0'
## Enable hyperlink auditing (`<a ping>`).
## Type: Bool
# c.content.hyperlink_auditing = False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment