turning back to qutebrowser because mozilla pooped

This commit is contained in:
Chris Cochrun 2024-12-04 14:20:45 -06:00
parent 9b76f34c09
commit 5f36e31953
6 changed files with 85 additions and 63 deletions

View file

@ -766,6 +766,7 @@ c.colors.webpage.darkmode.contrast = 0.5
## selective inversion of everything": Combines the two variants above.
## Type: Bool
c.colors.webpage.darkmode.enabled = False
config.set('colors.webpage.darkmode.enabled', True, '*://qutebrowser.org/*')
## Render all colors as grayscale. This only has an effect when
## `colors.webpage.darkmode.algorithm` is set to `lightness-hsl` or
@ -1060,6 +1061,7 @@ c.content.headers.do_not_track = True
## from hostblocking.
## Type: List of UrlPattern
c.content.blocking.whitelist = ['https://staff.tfcconnection.org']
c.content.blocking.method = 'both'
## Enable hyperlink auditing (`<a ping>`).
## Type: Bool
@ -2297,12 +2299,12 @@ config.bind("J", "tab-prev")
# config.bind('gu', 'navigate up')
# config.bind('h', 'scroll left')
# config.bind('i', 'enter-mode insert')
# config.bind('j', 'scroll down')
# config.bind('k', 'scroll up')
config.bind('j', 'cmd-repeat 2 scroll down')
config.bind('k', 'cmd-repeat 2 scroll up')
# config.bind('l', 'scroll right')
# config.bind('m', 'quickmark-save')
# config.bind('n', 'search-next')
config.bind("o", "set-cmd-text -s :open")
config.bind("o", "cmd-set-text -s :open")
# config.bind('pP', 'open -- {primary}')
# config.bind('pp', 'open -- {clipboard}')
# config.bind('q', 'record-macro')
@ -2486,7 +2488,7 @@ config.bind('<Ctrl-j>', 'completion-item-focus next', mode='command')
# config.bind('y', 'prompt-accept yes', mode='yesno')
## Bindings for MPV and YTDL
config.bind("v", 'hint links spawn --detach mpv --profile=fast --force-window yes "{hint-url}"')
config.bind("v", 'hint links spawn --detach empv "{hint-url}"')
config.bind("gv", "spawn --detach mpv --profile=fast --force-window yes --ytdl=bestvideo[height<=?720][fps<=?30]+bestaudio/best \'{url}\'")
config.bind("gc", 'spawn org-capture "{url}"')
config.bind(
@ -2503,8 +2505,11 @@ config.bind("gt", 'hint links spawn --detach transadd "{hint-url}"')
config.bind("gD", 'hint links spawn alacritty -e aria2c -o ~/Downloads/')
config.bind('<Ctrl-i>', 'zoom-in')
config.bind('<Ctrl-o>', 'zoom-out')
config.bind('<Ctrl-z>', 'zoom')
config.bind('d', 'tab-close')
config.bind('b', 'set-cmd-text -s :tab-select ')
config.bind('b', 'cmd-set-text -s :tab-select ')
config.bind('pt', 'tab-pin')
config.bind('tm', 'tab-move')
config.bind('st', 'config-cycle tabs.show always switching')