diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index d1260ed..d28c487 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -19,3 +19,16 @@ config.set('content.javascript.enabled', True, 'chrome://*/*') config.set('content.javascript.enabled', True, 'qute://*/*') c.editor.command = ["alacritty", "-e", "nvim", "-f", "{file}"] + +# ideas: +# have key to show/hide tab-bar +# TODO ideally this should toggle on one command, not require two different ones +config.bind('tt', 'set tabs.show switching') +config.bind('tT', 'set tabs.show always') + +# have tab bar on the right, not on the top +c.tabs.position = "right" + +# bind mpv to play the current page/links, using a single instance which queues the next link passed +config.bind('M', 'spawn umpv {url}') +config.bind('m', 'hint links spawn umpv {hint-url}')