12 lines
252 B
Python
12 lines
252 B
Python
|
import os
|
||
|
|
||
|
config.load_autoconfig()
|
||
|
|
||
|
c.colors.webpage.preferred_color_scheme = 'dark'
|
||
|
c.fonts.default_size = '12pt'
|
||
|
#c.zoom.default = '120%'
|
||
|
|
||
|
import glob
|
||
|
|
||
|
c.content.user_stylesheets = glob.glob(os.path.expanduser('~/.config/qutebrowser/styles/*.css'))
|