37 lines
868 B
Python
37 lines
868 B
Python
import dracula.draw
|
|
import keybindings
|
|
|
|
config.load_autoconfig()
|
|
|
|
c.auto_save.session = True
|
|
|
|
#c.colors.webpage.darkmode.enabled = True
|
|
#c.colors.webpage.darkmode.policy.images = 'never'
|
|
c.colors.webpage.preferred_color_scheme = 'dark'
|
|
|
|
#c.content.proxy = "socks://localhost:9050/"
|
|
#c.content.headers.accept_language = "en-IE,en;q=0.9"
|
|
|
|
c.downloads.position = 'bottom'
|
|
|
|
c.fonts.hints = 'bold 18px default_family'
|
|
|
|
c.tabs.background = True
|
|
c.tabs.mousewheel_switching = False
|
|
c.tabs.new_position.related = 'last'
|
|
|
|
c.url.start_pages = ['dashboard.serguzim.me', 'cloud.serguzim.me', 'localhost:6680/iris/']
|
|
c.url.searchengines = {'DEFAULT': 'bookmarks.serguzim/?q={}'}
|
|
|
|
keybindings.init(config)
|
|
|
|
dracula.draw.blood(c, {
|
|
'spacing': {
|
|
'vertical': 1,
|
|
'horizontal': 3
|
|
}
|
|
})
|
|
|
|
import socket
|
|
if socket.gethostname() == 'portalo':
|
|
c.zoom.default = 125
|