mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-08 16:04:37 +00:00
28 lines
955 B
Python
28 lines
955 B
Python
config.load_autoconfig(False)
|
|
|
|
import socket
|
|
if socket.gethostname() == 'wheatley':
|
|
c.zoom.default = 125
|
|
|
|
c.content.fullscreen.window = True
|
|
c.content.proxy = 'http://localhost:8118'
|
|
c.content.user_stylesheets = ['adblock.css', 'dracula.css', 'user.css']
|
|
|
|
c.confirm_quit = ['downloads']
|
|
c.downloads.location.directory = '~/Downloads'
|
|
c.qt.workarounds.remove_service_workers = True
|
|
|
|
c.url.searchengines['DEFAULT'] = 'farside.link/searxng/search?q={}'
|
|
c.url.searchengines['l'] = 'search.davidovski.xyz/search.php?q={}'
|
|
c.url.searchengines['m'] = 'morty.ononoki.org/?mortyurl={}'
|
|
c.url.searchengines['t'] = 'ao3.org/tags/{}'
|
|
c.url.searchengines['y'] = 'farside.link/invidious/search?q={}'
|
|
c.url.searchengines['!'] = 'duckduckgo.com/?q=!{}'
|
|
c.url.start_pages = c.url.default_page = 'https://megafocs.herokuapp.com'
|
|
|
|
config.source('adblock.py')
|
|
config.source('bindings.py')
|
|
config.source('redirects.py')
|
|
config.source('sites.py')
|
|
config.source('theme.py')
|