1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-28 12:58:57 +00:00
dotfiles/dot-config/qutebrowser/bindings.py

26 lines
867 B
Python

bind = {
'<Ctrl-q>': 'close',
'<Ctrl-r>': 'spawn -u readability',
'<Ctrl-w>': 'tab-close',
'<Ctrl-Shift-R>': 'spawn kitty rdrview -B qutebrowser {url}',
'<Alt+f>' : 'config-cycle hints.chars qwerasdf asdfghjkl',
'm': 'mpv {url}',
'M': 'mpv4 {url}',
',': 'hint links run mpv {hint-url}',
';m': 'hint links run mpv {hint-url}',
';M': 'hint links run mpv4 {hint-url}',
's1': 'download-open',
'sa': 'open -t archive.is/?run=1&url={url}',
'sc': 'config-cycle content.user_stylesheets adapta.css ""',
'sd': "spawn fish -c 'dl; open (ls | rofi -dmenu -b -i || exit 0)'",
'sg': 'debug-dump-page ~/Downloads/dump.html',
'sq': 'spawn -u qr',
'sr': 'remove-sticky',
'st': 'config-cycle content.proxy socks://localhost:9050/ system',
'T' : 'tab-next'
}
for a, b in bind.items():
config.bind(a, b)