31 lines
449 B
Nix
31 lines
449 B
Nix
|
{ ... }: {
|
||
|
home.file.".config/mako/config".text = ''
|
||
|
max-history=5
|
||
|
sort=+time
|
||
|
|
||
|
on-button-left=dismiss
|
||
|
on-button-right=dismiss-all
|
||
|
|
||
|
font=JetbrainsMono Regular
|
||
|
background-color=#3a3c3e
|
||
|
border-color=#2a9b34
|
||
|
text-color=#d9eed2
|
||
|
width=300
|
||
|
height=100
|
||
|
margin=10
|
||
|
padding=15
|
||
|
border-size=3
|
||
|
border-radius=15
|
||
|
icons=1
|
||
|
max-icon-size=128
|
||
|
icon-location=left
|
||
|
markup=1
|
||
|
actions=1
|
||
|
history=1
|
||
|
text-alignment=left
|
||
|
default-timeout=15000
|
||
|
layer=top
|
||
|
anchor=top-right
|
||
|
'';
|
||
|
}
|