AutoYADM commit: 2025-06-01 23:24:30
This commit is contained in:
parent
23ac62f791
commit
a9d835dfcb
2 changed files with 21 additions and 3 deletions
|
@ -1,6 +1,11 @@
|
|||
# $XDG_CONFIG_HOME/qutebrowser/config.py
|
||||
# pyright: disabled
|
||||
# pyright: basic, reportUnboundVariable = false, reportAttributeAccessIssue = false
|
||||
# general settings
|
||||
from typing import Any
|
||||
|
||||
|
||||
config: Any
|
||||
c: Any
|
||||
config.load_autoconfig()
|
||||
c.editor.command = ["footclient", "kak", "{}"]
|
||||
c.new_instance_open_target = "tab-bg"
|
||||
|
@ -24,7 +29,8 @@ c.colors.webpage.darkmode.enabled = True
|
|||
c.colors.webpage.darkmode.algorithm = "lightness-cielab"
|
||||
c.colors.webpage.darkmode.policy.images = "never"
|
||||
config.set("colors.webpage.darkmode.enabled", False, "file://*")
|
||||
# config.set("colors.webpage.darkmode.enabled", False, "*.sr.ht/*")
|
||||
config.set("colors.webpage.darkmode.enabled", False, "github.com")
|
||||
c.colors.webpage.preferred_color_scheme = "dark"
|
||||
|
||||
# searches
|
||||
c.url.searchengines["DEFAULT"] = "https://duckduckgo.com/?q={}"
|
||||
|
@ -121,7 +127,7 @@ ashen = {
|
|||
}
|
||||
|
||||
# # colors
|
||||
# c.colors.completion.fg = "#899CA1"
|
||||
# c.colors.completion.fg = ashen["text"]
|
||||
# c.colors.completion.category.fg = "#F2F2F2"
|
||||
# c.colors.completion.category.bg = "#555555"
|
||||
# c.colors.completion.item.selected.fg = "white"
|
||||
|
@ -175,3 +181,5 @@ ashen = {
|
|||
# c.colors.prompts.fg = "#333333"
|
||||
# c.colors.prompts.bg = "#DDDDDD"
|
||||
# c.colors.prompts.selected.bg = "#4779B3"
|
||||
|
||||
config.source("qutebrowser-themes/themes/onedark.py")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue