Generalize qutebrowser config (add generic.py)
This commit is contained in:
parent
9f68b7bcee
commit
694557d854
3 changed files with 32 additions and 28 deletions
26
.config/qutebrowser/generic.py
Normal file
26
.config/qutebrowser/generic.py
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import dracula.draw
|
||||
|
||||
def init(c):
|
||||
#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.searchengines = {'DEFAULT': 'bookmarks.serguzim/?q={}'}
|
||||
|
||||
dracula.draw.blood(c, {
|
||||
'spacing': {
|
||||
'vertical': 1,
|
||||
'horizontal': 3
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue