2020-10-02 09:28:49 +00:00
|
|
|
config.load_autoconfig()
|
|
|
|
|
|
|
|
c.auto_save.session = True
|
2020-10-07 22:27:38 +00:00
|
|
|
|
2020-10-02 09:28:49 +00:00
|
|
|
c.url.start_pages = ['dashboard.serguzim.me']
|
|
|
|
c.url.searchengines = {'DEFAULT': 'bookmarks.serguzim/?q={}'}
|
2020-10-07 22:27:38 +00:00
|
|
|
|
|
|
|
c.tabs.mousewheel_switching = False
|
|
|
|
|
2020-10-02 09:28:49 +00:00
|
|
|
c.zoom.default = 130
|
|
|
|
|
2020-10-07 22:27:38 +00:00
|
|
|
|
|
|
|
|
2020-10-02 09:28:49 +00:00
|
|
|
config.bind(',v', 'spawn mpv {url}')
|
|
|
|
config.bind(',V', 'hint links spawn mpv {hint-url}')
|
|
|
|
|
|
|
|
config.bind(',s', 'spawn steam steam://openurl/{url}')
|
|
|
|
config.bind(',rr', 'open {url:scheme}://removeddit.com{url:path}{url:query}')
|
|
|
|
config.bind(',rt', 'open {url:scheme}://reddit.tube{url:path}{url:query}')
|
|
|
|
|
2020-10-07 22:27:38 +00:00
|
|
|
PASS_SCRIPT_DEFAULT = 'spawn --userscript qute-pass --no-insert-mode --username-target secret --username-pattern "login: (.+)" '
|
2020-10-02 09:28:49 +00:00
|
|
|
config.bind(',p', PASS_SCRIPT_DEFAULT)
|
|
|
|
config.bind(',Pu', PASS_SCRIPT_DEFAULT + '--username-only')
|
|
|
|
config.bind(',Pi', PASS_SCRIPT_DEFAULT + '--password-only')
|
|
|
|
config.bind(',Po', PASS_SCRIPT_DEFAULT + '--otp-only')
|
|
|
|
|
|
|
|
|
|
|
|
config.bind('<Alt-9>', 'tab-focus 9')
|
|
|
|
|
|
|
|
config.bind('<Ctrl-Tab>', 'tab-next')
|
|
|
|
config.bind('<Ctrl-Shift-Tab>', 'tab-prev')
|