2025-06-11 15:29:50 +03:00
|
|
|
config.load_autoconfig()
|
|
|
|
|
|
|
|
|
|
c.content.blocking.enabled = True
|
|
|
|
|
c.content.blocking.method = 'both'
|
|
|
|
|
|
|
|
|
|
c.url.searchengines = {
|
2025-10-09 13:05:20 +03:00
|
|
|
'DEFAULT': 'https://searxng.juustodiilerit.fi/search?q={}'
|
2025-06-11 15:29:50 +03:00
|
|
|
}
|
|
|
|
|
c.url.default_page = 'https://homepage.juustodiilerit.fi'
|
|
|
|
|
c.url.start_pages = ['https://homepage.juustodiilerit.fi']
|
|
|
|
|
|
2025-10-09 13:05:20 +03:00
|
|
|
c.auto_save.session = True
|
|
|
|
|
|
2025-06-11 15:29:50 +03:00
|
|
|
config.unbind('d', mode='normal')
|
|
|
|
|
config.bind('x', 'tab-close')
|
|
|
|
|
config.bind('d', 'scroll-page 0 0.5')
|
|
|
|
|
config.bind('u', 'scroll-page 0 -0.5')
|
|
|
|
|
|
|
|
|
|
config.unbind('J', mode='normal')
|
|
|
|
|
config.unbind('K', mode='normal')
|
|
|
|
|
config.bind('J', 'tab-prev')
|
|
|
|
|
config.bind('K', 'tab-next')
|