Modularize qutebrowser config for reuse

This commit is contained in:
Tobias Reisinger 2021-04-16 10:13:27 +02:00
parent d053f9d145
commit 8d92f8c8f2
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
4 changed files with 84 additions and 30 deletions

View file

@ -0,0 +1,27 @@
def init(c):
c.bind(',v', 'spawn --userscript view_in_mpv {url}')
c.bind(',V', 'hint links spawn --userscript view_in_mpv {hint-url}')
c.bind(',b', 'spawn brave {url}')
c.bind(',B', 'hint links spawn brave {hint-url}')
c.bind(',j', 'spawn --userscript format_json')
c.bind(',g', 'open {url:scheme}://github1s.com{url:path}{url:query}')
c.bind(',rr', 'open {url:scheme}://removeddit.com{url:path}{url:query}')
c.bind(',rt', 'open {url:scheme}://reddit.tube{url:path}{url:query}')
c.bind(',s', 'spawn steam steam://openurl/{url}')
pass_script_default = 'spawn --userscript qute-pass --no-insert-mode --username-target secret --username-pattern "login: (.+)" '
c.bind(',p', pass_script_default)
c.bind(',Pu', pass_script_default + '--username-only')
c.bind(',Pi', pass_script_default + '--password-only')
c.bind(',Po', pass_script_default + '--otp-only')
c.bind(',q', 'spawn --userscript qr {url}')
c.bind(',Q', 'hint links spawn --userscript qr {hint-url}')
c.bind('<Alt-9>', 'tab-focus 9')
c.bind('<Ctrl-Tab>', 'tab-next')
c.bind('<Ctrl-Shift-Tab>', 'tab-prev')