2021-03-30 20:53:39 +00:00
|
|
|
import dracula.draw
|
2021-04-16 08:13:27 +00:00
|
|
|
import keybindings
|
2021-03-30 20:53:39 +00:00
|
|
|
|
2020-10-02 09:28:49 +00:00
|
|
|
config.load_autoconfig()
|
|
|
|
|
|
|
|
c.auto_save.session = True
|
2020-10-07 22:27:38 +00:00
|
|
|
|
2021-03-30 20:53:39 +00:00
|
|
|
#c.colors.webpage.darkmode.enabled = True
|
|
|
|
#c.colors.webpage.darkmode.policy.images = 'never'
|
|
|
|
c.colors.webpage.preferred_color_scheme = 'dark'
|
|
|
|
|
2020-11-18 14:37:19 +00:00
|
|
|
#c.content.proxy = "socks://localhost:9050/"
|
2021-04-30 14:31:30 +00:00
|
|
|
#c.content.headers.accept_language = "en-IE,en;q=0.9"
|
2020-11-18 14:37:19 +00:00
|
|
|
|
|
|
|
c.downloads.position = 'bottom'
|
|
|
|
|
2020-12-23 15:45:11 +00:00
|
|
|
c.fonts.hints = 'bold 18px default_family'
|
2020-10-07 22:27:38 +00:00
|
|
|
|
2020-11-18 14:37:19 +00:00
|
|
|
c.tabs.background = True
|
2020-10-07 22:27:38 +00:00
|
|
|
c.tabs.mousewheel_switching = False
|
2020-11-18 14:37:19 +00:00
|
|
|
c.tabs.new_position.related = 'last'
|
2020-10-07 22:27:38 +00:00
|
|
|
|
2020-12-23 15:45:11 +00:00
|
|
|
c.url.start_pages = ['dashboard.serguzim.me', 'cloud.serguzim.me', 'localhost:6680/iris/']
|
|
|
|
c.url.searchengines = {'DEFAULT': 'bookmarks.serguzim/?q={}'}
|
|
|
|
|
2020-12-30 16:41:09 +00:00
|
|
|
c.zoom.default = 125
|
2020-10-02 09:28:49 +00:00
|
|
|
|
2021-04-16 08:13:27 +00:00
|
|
|
keybindings.init(config)
|
2021-03-30 20:53:39 +00:00
|
|
|
|
|
|
|
dracula.draw.blood(c, {
|
|
|
|
'spacing': {
|
|
|
|
'vertical': 1,
|
|
|
|
'horizontal': 3
|
|
|
|
}
|
|
|
|
})
|