nix/user/common/mako/default.nix

15 lines
370 B
Nix
Raw Normal View History

2024-04-24 18:32:14 +03:00
{ style, util, setting, ... }: {
2024-04-06 03:03:58 +03:00
config = util.trimTabs ''
anchor=top-center
2024-04-24 18:32:14 +03:00
default-timeout=${setting.popup.timeout.ms}
2024-04-06 03:03:58 +03:00
font=${style.font.serif.name} ${toString(style.font.size.popup)}
2024-04-24 18:32:14 +03:00
background-color=#${style.color.bg.dark}
2024-04-24 18:40:38 +03:00
border-color=#${style.color.bg.regular}
2024-04-06 03:03:58 +03:00
text-color=#${style.color.fg.light}
height=120
icons=0
margin=32
width=480
'';
}