nix/home-manager/common/desktops/hyprland/themes/stylix/mako-conf.nix

28 lines
526 B
Nix
Raw Normal View History

2024-01-03 14:25:06 +01:00
{ ... }: {
2024-01-04 06:39:52 +01:00
services.mako = {
enable = true;
anchor = "top-left";
2024-01-04 09:14:20 +01:00
borderRadius = 10;
borderSize = 2;
2024-01-04 06:39:52 +01:00
icons = true;
actions = true;
layer = "top";
markup = true;
height = 100;
width = 300;
2024-01-04 09:16:13 +01:00
margin = "10px";
2024-01-04 09:15:34 +01:00
defaultTimeout = 15000;
2024-01-04 06:39:52 +01:00
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
'';
};
2024-01-03 14:25:06 +01:00
}