nix/user/home/module/foot/Foot.nix

16 lines
550 B
Nix
Raw Normal View History

2024-04-04 13:51:06 +03:00
{ style, ... }: {
2024-04-03 02:05:36 +03:00
config = ''
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-03 02:05:36 +03:00
dpi-aware=yes
2024-04-04 15:14:09 +03:00
font-size-adjustment=1
2024-04-03 02:05:36 +03:00
[colors]
2024-04-04 13:51:06 +03:00
alpha=${toString(style.opacity.terminal)}
background=${style.color.bg_dark}
2024-04-05 20:46:35 +03:00
foreground=${style.color.fg_light}
2024-04-03 02:05:36 +03:00
'';
}