nix/user/home/module/mako/Mako.nix

13 lines
276 B
Nix
Raw Normal View History

2024-04-04 13:51:06 +03:00
{ style, ... }: {
2024-04-03 02:05:36 +03:00
config = ''anchor=top-center
default-timeout=5000
2024-04-04 13:51:06 +03:00
font=${style.font.serif.name} ${toString(style.font.size.popup)}
background-color=#${style.color.bg}
border-color=#${style.color.bg}
text-color=#${style.color.fg}
2024-04-03 02:05:36 +03:00
height=120
icons=0
margin=32
width=480'';
}