Setting : Add Foot forceWhite font switch.
This commit is contained in:
parent
7b20a0429c
commit
c927e8ff63
|
@ -48,6 +48,7 @@
|
|||
font = {
|
||||
step = "1";
|
||||
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 ''
|
||||
font=${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]
|
||||
alpha=${toString(style.opacity.terminal)}
|
||||
background=${style.color.bg.dark}
|
||||
foreground=${style.color.fg.light}
|
||||
'';
|
||||
'' + foreground;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue