nix/user/common/foot/default.nix

21 lines
735 B
Nix
Raw Normal View History

{ style, setting, util, ... }: let
foreground = if setting.foot.font.forceWhite then ''
foreground=ffffff
'' else ''
foreground=${style.color.fg.light}
'';
in {
2024-04-06 03:03:58 +03:00
config = util.trimTabs ''
2024-04-04 13:51:06 +03:00
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)}
2024-04-06 03:03:58 +03:00
dpi-aware=${setting.foot.font.dpi}
font-size-adjustment=${setting.foot.font.step}
2024-04-03 02:05:36 +03:00
[colors]
2024-04-04 13:51:06 +03:00
alpha=${toString(style.opacity.terminal)}
2024-04-06 03:03:58 +03:00
background=${style.color.bg.dark}
'' + foreground;
2024-04-03 02:05:36 +03:00
}