Tobias Reisinger
a60d88a5ef
Link latest screenshot Disable astronvim dashboard Remove unused qutebrowse keybinds Change waybar player info spacing
52 lines
2.3 KiB
Python
52 lines
2.3 KiB
Python
import os
|
|
|
|
def init(c):
|
|
c.unbind('d') # I prefer ctrl+w to close tabs. I hit d by mistake too often.
|
|
|
|
c.bind(',v', 'spawn io.freetubeapp.FreeTube {url}')
|
|
c.bind(',V', 'hint links spawn io.freetubeapp.FreeTube {hint-url}')
|
|
|
|
# external
|
|
browser_chromium = os.getenv('BROWSER_CHROMIUM', 'chromium')
|
|
c.bind(',eb', f'spawn {browser_chromium} {{url}}')
|
|
c.bind(',eB', f'hint links spawn {browser_chromium} {{hint-url}}')
|
|
c.bind(',ef', 'spawn firefox {url}')
|
|
c.bind(',eF', 'hint links spawn firefox {hint-url}')
|
|
c.bind(',es', 'spawn xdg-open steam://openurl/{url}')
|
|
c.bind(',ep', 'spawn kdeconnect-cli -n Fairphone3 --share {url}')
|
|
c.bind(',et', 'spawn ts-control message {url}')
|
|
c.bind(',eT', 'hint links spawn ts-control message {hint-url}')
|
|
|
|
# password-manager
|
|
gpg_key = '723B78C0BF8D8C721D2C4EEF41E544A54E2533B2'
|
|
c.bind(',p', f'spawn --userscript qutebrowser-keepassxc --key {gpg_key}', mode='normal')
|
|
c.bind(',Pu', f'spawn --userscript qutebrowser-keepassxc --only-username --key {gpg_key}', mode='normal')
|
|
c.bind(',Pi', f'spawn --userscript qutebrowser-keepassxc --only-password --key {gpg_key}', mode='normal')
|
|
c.bind(',Po', f'spawn --userscript qutebrowser-keepassxc --only-otp --key {gpg_key}', mode='normal')
|
|
c.bind(',Pp', f'spawn --userscript qutebrowser-keepassxc --autotype --key {gpg_key}', mode='normal')
|
|
|
|
# output
|
|
c.bind(',oq', 'spawn --userscript qr {url}')
|
|
c.bind(',oQ', 'hint links spawn --userscript qr {hint-url}')
|
|
c.bind(',oj', 'spawn --userscript format_json dracula')
|
|
# cookies
|
|
c.bind(',cd', 'jseval document.cookie = "XDEBUG_SESSION=phpstorm; expires=Fri, 01 Jan 9999 00:00:00 GMT; path=/"')
|
|
# query
|
|
c.bind(',qd', 'jseval let sp = new URLSearchParams(window.location.search); sp.append("filter-source", "1"); sp.append("filter-source", "2"); window.location.search = sp.toString();')
|
|
|
|
c.bind('<Alt-9>', 'tab-focus 9')
|
|
|
|
c.bind('<Ctrl-Tab>', 'tab-next')
|
|
c.bind('<Ctrl-Shift-Tab>', 'tab-prev')
|
|
|
|
c.unbind('M')
|
|
c.bind('M', 'spawn --userscript qutebrowser-linkwarden', mode='normal')
|
|
|
|
try:
|
|
import unalix
|
|
c.unbind('yy')
|
|
c.unbind('yY')
|
|
c.bind('yy', 'spawn --userscript qutebrowser-clear-url', mode='normal')
|
|
c.bind('yY', 'spawn --userscript qutebrowser-clear-url -s', mode='normal')
|
|
except:
|
|
pass
|