27 lines
526 B
Nix
27 lines
526 B
Nix
{ ... }: {
|
|
services.mako = {
|
|
enable = true;
|
|
anchor = "top-left";
|
|
borderRadius = 10;
|
|
borderSize = 2;
|
|
icons = true;
|
|
actions = true;
|
|
layer = "top";
|
|
markup = true;
|
|
height = 100;
|
|
width = 300;
|
|
margin = "10px";
|
|
defaultTimeout = 15000;
|
|
sort = "+time";
|
|
extraConfig = ''
|
|
max-history=5
|
|
on-button-left=dismiss
|
|
on-button-right=dismiss-all
|
|
padding=15
|
|
max-icon-size=128
|
|
icon-location=left
|
|
history=1
|
|
text-alignment=left
|
|
'';
|
|
};
|
|
}
|