qutebrowser: add paperless shortcut

This commit is contained in:
dogeystamp 2023-12-15 19:03:57 -05:00
parent 6c088de975
commit ed796356c4
Signed by: dogeystamp
GPG Key ID: 7225FE3592EFFA38
2 changed files with 24 additions and 0 deletions

View File

@ -62,6 +62,8 @@ end
#
# listenbrainz
function lstb; qbprof lstb; end
# paperless
function papr; qbprof papr; end
function work; qbprof work; end
function chat; qbprof chat; end
function zoom; qbprof zoom; end

View File

@ -0,0 +1,22 @@
config.load_autoconfig(False)
c.input.mode_override = "passthrough"
c.statusbar.show = "never"
c.tabs.show = "multiple"
c.bindings.default["passthrough"] = {}
c.bindings.commands["passthrough"] = {
"<ctrl-escape>": "mode-leave"
}
c.url.start_pages = "https://doc.dogeystamp.com"
c.downloads.location.directory = "~/quar/"
c.downloads.remove_finished = 1000
c.scrolling.smooth = True
c.colors.webpage.darkmode.enabled = True
# homegrown file selector
c.fileselect.handler = "external"
c.fileselect.multiple_files.command = ["st", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"]
c.fileselect.single_file.command = ["st", "-e", "fish", "-C", "set -x OUTPUT {}; source ~/.local/bin/fish-fm"]