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
10
.config/qutebrowser/autoconfig.yml
Normal file
10
.config/qutebrowser/autoconfig.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
# If a config.py file exists, this file is ignored unless it's explicitly loaded
|
||||||
|
# via config.load_autoconfig(). For more information, see:
|
||||||
|
# https://github.com/qutebrowser/qutebrowser/blob/main/doc/help/configuring.asciidoc#loading-autoconfigyml
|
||||||
|
# DO NOT edit this file by hand, qutebrowser will overwrite it.
|
||||||
|
# Instead, create a config.py - see :help for details.
|
||||||
|
|
||||||
|
config_version: 2
|
||||||
|
settings:
|
||||||
|
content.javascript.clipboard:
|
||||||
|
https://github.com: access-paste
|
|
@ -1,6 +1,11 @@
|
||||||
# $XDG_CONFIG_HOME/qutebrowser/config.py
|
# $XDG_CONFIG_HOME/qutebrowser/config.py
|
||||||
# pyright: disabled
|
# pyright: basic, reportUnboundVariable = false, reportAttributeAccessIssue = false
|
||||||
# general settings
|
# general settings
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
|
||||||
|
config: Any
|
||||||
|
c: Any
|
||||||
config.load_autoconfig()
|
config.load_autoconfig()
|
||||||
c.editor.command = ["footclient", "kak", "{}"]
|
c.editor.command = ["footclient", "kak", "{}"]
|
||||||
c.new_instance_open_target = "tab-bg"
|
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.algorithm = "lightness-cielab"
|
||||||
c.colors.webpage.darkmode.policy.images = "never"
|
c.colors.webpage.darkmode.policy.images = "never"
|
||||||
config.set("colors.webpage.darkmode.enabled", False, "file://*")
|
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
|
# searches
|
||||||
c.url.searchengines["DEFAULT"] = "https://duckduckgo.com/?q={}"
|
c.url.searchengines["DEFAULT"] = "https://duckduckgo.com/?q={}"
|
||||||
|
@ -121,7 +127,7 @@ ashen = {
|
||||||
}
|
}
|
||||||
|
|
||||||
# # colors
|
# # colors
|
||||||
# c.colors.completion.fg = "#899CA1"
|
# c.colors.completion.fg = ashen["text"]
|
||||||
# c.colors.completion.category.fg = "#F2F2F2"
|
# c.colors.completion.category.fg = "#F2F2F2"
|
||||||
# c.colors.completion.category.bg = "#555555"
|
# c.colors.completion.category.bg = "#555555"
|
||||||
# c.colors.completion.item.selected.fg = "white"
|
# c.colors.completion.item.selected.fg = "white"
|
||||||
|
@ -175,3 +181,5 @@ ashen = {
|
||||||
# c.colors.prompts.fg = "#333333"
|
# c.colors.prompts.fg = "#333333"
|
||||||
# c.colors.prompts.bg = "#DDDDDD"
|
# c.colors.prompts.bg = "#DDDDDD"
|
||||||
# c.colors.prompts.selected.bg = "#4779B3"
|
# c.colors.prompts.selected.bg = "#4779B3"
|
||||||
|
|
||||||
|
config.source("qutebrowser-themes/themes/onedark.py")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue