nix/home-manager/common/desktops/hyprland/components/mako.nix

26 lines
485 B
Nix
Raw Permalink Normal View History

2024-01-03 14:25:06 +01:00
{ ... }: {
2024-01-04 06:39:52 +01:00
services.mako = {
enable = true;
2024-01-07 07:21:41 +01:00
anchor = "top-right";
2024-01-04 13:05:01 +01:00
borderRadius = 2;
2024-01-04 09:14:20 +01:00
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:15:34 +01:00
defaultTimeout = 15000;
2024-01-04 06:39:52 +01:00
sort = "+time";
extraConfig = ''
on-button-left=dismiss
on-button-right=dismiss-all
padding=15
max-icon-size=128
icon-location=left
history=1
2024-01-07 07:21:41 +01:00
text-alignment=left
2024-01-04 06:39:52 +01:00
'';
};
2024-01-03 14:25:06 +01:00
}