nix/user/home/module/foot/Init.nix

16 lines
624 B
Nix
Raw Normal View History

2024-04-06 03:03:58 +03:00
{ style, setting, util, ... }: {
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=${style.color.fg.light}
2024-04-03 02:05:36 +03:00
'';
}