15 lines
341 B
Nix
15 lines
341 B
Nix
|
{ style, util, ... }: {
|
||
|
config = util.trimTabs ''
|
||
|
anchor=top-center
|
||
|
default-timeout=5000
|
||
|
font=${style.font.serif.name} ${toString(style.font.size.popup)}
|
||
|
background-color=#${style.color.bg.regular}
|
||
|
border-color=#${style.color.bg.regular}
|
||
|
text-color=#${style.color.fg.light}
|
||
|
height=120
|
||
|
icons=0
|
||
|
margin=32
|
||
|
width=480
|
||
|
'';
|
||
|
}
|