18 lines
687 B
Nix
18 lines
687 B
Nix
{ style, setting, util, ... }: let
|
|
dpiaware = if setting.foot.font.dpi then "yes" else "no";
|
|
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)}
|
|
font-italic=${style.font.monospace.name}:size=${toString(style.font.size.terminal)}
|
|
font-bold-italic=${style.font.monospace.name}:size=${toString(style.font.size.terminal)}
|
|
dpi-aware=${dpiaware}
|
|
font-size-adjustment=${toString(setting.foot.font.step)}
|
|
|
|
[colors]
|
|
alpha=${toString(style.opacity.terminal)}
|
|
background=${style.color.bg.dark}
|
|
foreground=${style.color.fg.light}
|
|
'';
|
|
}
|