refactor!(tmpfiles): expand power upon tmpfiles by deabstracting
This returns tmpfiles to its original form. Turns out that making something too simple gives it less power.
This commit is contained in:
parent
f4770f1908
commit
035fb24038
20 changed files with 74 additions and 72 deletions
37
hosts/solterra/users/artur/configs/qutebrowser/config.py
Normal file
37
hosts/solterra/users/artur/configs/qutebrowser/config.py
Normal file
|
@ -0,0 +1,37 @@
|
|||
from theme import load_theme
|
||||
|
||||
config.load_autoconfig()
|
||||
|
||||
everforest = {
|
||||
"base00": "#2b3339",
|
||||
"base01": "#323c41",
|
||||
"base02": "#503946",
|
||||
"base03": "#868d80",
|
||||
"base04": "#d3c6aa",
|
||||
"base05": "#d3c6aa",
|
||||
"base06": "#e9e8d2",
|
||||
"base07": "#fff9e8",
|
||||
"base08": "#7fbbb3",
|
||||
"base09": "#d699b6",
|
||||
"base0A": "#83c092",
|
||||
"base0B": "#dbbc7f",
|
||||
"base0C": "#e69875",
|
||||
"base0D": "#a7c080",
|
||||
"base0E": "#e67e80",
|
||||
"base0F": "#d699b6",
|
||||
}
|
||||
|
||||
load_theme(c, everforest)
|
||||
|
||||
c.colors.webpage.preferred_color_scheme = "dark"
|
||||
c.tabs.position = "top"
|
||||
c.tabs.width = 32
|
||||
c.fonts.default_size = "13pt"
|
||||
c.fonts.default_family = "sans-serif"
|
||||
c.tabs.padding = {
|
||||
"bottom": 4,
|
||||
"top": 4,
|
||||
"left": 6,
|
||||
"right": 6,
|
||||
}
|
||||
c.tabs.indicator.width = 0
|
Loading…
Add table
Add a link
Reference in a new issue