hosts/{apeturescience,cityseventeen}: init apeturescience, change font and size in cityseventeen
This commit is contained in:
parent
ea7dd98c09
commit
717a0b8a21
35 changed files with 1234 additions and 91 deletions
30
hosts/apeturescience/skel/qutebrowser/config.py
Normal file
30
hosts/apeturescience/skel/qutebrowser/config.py
Normal file
|
@ -0,0 +1,30 @@
|
|||
from colours.themes import load_colours, Palettes
|
||||
from colours.darkmode import darkmode_on
|
||||
|
||||
|
||||
def main():
|
||||
# leave this alone!
|
||||
config.load_autoconfig()
|
||||
|
||||
# rose-pine
|
||||
load_colours(c, Palettes.rose_pine)
|
||||
|
||||
darkmode_on(config, ["about:blank"])
|
||||
|
||||
c.colors.webpage.darkmode.enabled = False
|
||||
c.colors.webpage.preferred_color_scheme = "dark"
|
||||
c.tabs.position = "top"
|
||||
c.tabs.width = 32
|
||||
c.fonts.default_size = "9pt"
|
||||
c.fonts.default_family = "sans-serif"
|
||||
c.tabs.padding = {
|
||||
"bottom": 4,
|
||||
"top": 4,
|
||||
"left": 6,
|
||||
"right": 6,
|
||||
}
|
||||
c.tabs.indicator.width = 0
|
||||
c.url.start_pages = "about:blank"
|
||||
|
||||
|
||||
main()
|
Loading…
Add table
Add a link
Reference in a new issue