From d97837ada29aee2c1323fac779f4ea90c0d8abfd Mon Sep 17 00:00:00 2001 From: CronyAkatsuki Date: Tue, 7 Nov 2023 18:42:13 +0100 Subject: [PATCH] Update the config to be on crack. --- .config/qutebrowser/config.py | 70 +++++++++++++++++++++++++++++------ 1 file changed, 59 insertions(+), 11 deletions(-) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index 85699fc..a88db3f 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -18,8 +18,15 @@ catppuccin.setup(c, "Machiatto", True) # load custom configs config.source("pyconfig/redirectors.py") -# enable dark mode +##-- Dark Mode Settings --## +c.colors.webpage.preferred_color_scheme = "dark" c.colors.webpage.darkmode.enabled = True +c.colors.webpage.bg = "black" +c.colors.webpage.darkmode.algorithm = "lightness-cielab" +c.colors.webpage.darkmode.threshold.text = 150 +c.colors.webpage.darkmode.threshold.background = 100 +c.colors.webpage.darkmode.policy.images = "always" +c.colors.webpage.darkmode.grayscale.images = 0.35 # change startpage and default page c.url.start_pages = ["https://startpage.cronyakatsuki.xyz"] @@ -44,12 +51,22 @@ c.content.canvas_reading = False c.content.webgl = False c.content.webrtc_ip_handling_policy = "default-public-interface-only" c.content.geolocation = False -c.content.blocking.method = "both" c.content.javascript.enabled = False c.content.notifications.enabled = False c.content.cookies.accept = "never" c.content.private_browsing = False +##-- AdBLock Settings --## +c.content.blocking.method = "both" +c.content.blocking.adblock.lists = [ + "https://easylist.to/easylist/easylist.txt", + "https://easylist.to/easylist/easyprivacy.txt", + "https://secure.fanboy.co.nz/fanboy-annoyance.txt", + "https://easylist-downloads.adblockplus.org/abp-filters-anti-cv.txt", + "https://www.i-dont-care-about-cookies.eu/abp/", +] + + # History disable c.completion.web_history.max_items = 0 c.completion.cmd_history_max_items = 0 @@ -88,22 +105,53 @@ c.aliases["buku"] = "spawn --userscript buku" ##-- Bindings --## # launch with mpv -config.bind(",m", "spawn mpv {url}") -config.bind(",M", "hint links spawn mpv {hint-url}") +config.bind("m", "spawn mpv {url}") +config.bind("fm", "hint links spawn mpv {hint-url}") # buku bundings config.bind("b", "buku open") -config.bind(",ba", "buku add") -config.bind(",be", "buku edit") -config.bind(",bd", "buku delete") +config.bind("ba", "buku add") +config.bind("be", "buku edit") +config.bind("bd", "buku delete") # yt-dlp -config.bind(",y", "spawn --userscript yt-dlp") -config.bind(",Y", "hint links userscript yt-dlp") +config.bind("y", "spawn --userscript yt-dlp") +config.bind("fy", "hint links userscript yt-dlp") # search current selection -config.bind(",f", "open {primary}") -config.bind(",F", "open --tab {primary}") +config.bind("f", "open {primary}") +config.bind("F", "open --tab {primary}") + +# yank found url +config.bind("yf", "hint links yank") + +# fix escape +config.bind( + "", "mode-leave ;; jseval -q document.activeElement.blur()", mode="insert" +) + +# fix scrolling +config.bind("j", "jseval --quiet scrollHelper.scrollBy(200)") +config.bind("k", "jseval --quiet scrollHelper.scrollBy(-200)") +config.bind("", "jseval --quiet scrollHelper.scrollPage(0.8)") +config.bind("", "jseval --quiet scrollHelper.scrollPage(-0.8)") +config.bind("gg", "jseval --quiet scrollHelper.scrollTo(0)") +config.bind("G", "jseval --quiet scrollHelper.scrollToPercent(100)") + +# remove clickbard and gdpr banners +config.bind( + "ek", + "jseval (function () { " + + ' var i, elements = document.querySelectorAll("body *");' + + "" + + " for (i = 0; i < elements.length; i++) {" + + " var pos = getComputedStyle(elements[i]).position;" + + ' if (pos === "fixed" || pos == "sticky") {' + + " elements[i].parentNode.removeChild(elements[i]);" + + " }" + + " }" + + "})();", +) ##-- Font Settings --## c.fonts.default_family = '"Source Code Pro"'