Setting : Add Foot forceWhite font switch.
This commit is contained in:
parent
7b20a0429c
commit
c927e8ff63
|
@ -48,6 +48,7 @@
|
||||||
font = {
|
font = {
|
||||||
step = "1";
|
step = "1";
|
||||||
dpi = "yes";
|
dpi = "yes";
|
||||||
|
forceWhite = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{ style, setting, util, ... }: {
|
{ style, setting, util, ... }: let
|
||||||
|
foreground = if setting.foot.font.forceWhite then ''
|
||||||
|
foreground=ffffff
|
||||||
|
'' else ''
|
||||||
|
foreground=${style.color.fg.light}
|
||||||
|
'';
|
||||||
|
in {
|
||||||
config = util.trimTabs ''
|
config = util.trimTabs ''
|
||||||
font=${style.font.monospace.name}:size=${toString(style.font.size.terminal)}
|
font=${style.font.monospace.name}:size=${toString(style.font.size.terminal)}
|
||||||
# font-bold=${style.font.monospace.name}:size=${toString(style.font.size.terminal)}
|
# font-bold=${style.font.monospace.name}:size=${toString(style.font.size.terminal)}
|
||||||
|
@ -10,6 +16,5 @@
|
||||||
[colors]
|
[colors]
|
||||||
alpha=${toString(style.opacity.terminal)}
|
alpha=${toString(style.opacity.terminal)}
|
||||||
background=${style.color.bg.dark}
|
background=${style.color.bg.dark}
|
||||||
foreground=${style.color.fg.light}
|
'' + foreground;
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue