nixos/home/hyprland/mako.nix
Evie Litherland-Smith 1a48515410 Switch swaync for mako, swayosd for avizo
mako and avizo are both themed with stylix so easier to keep consistent

Reduce opacity of popups 0.8 -> 0.5
2023-10-19 07:40:03 +01:00

18 lines
349 B
Nix

{ config, lib, pkgs, ... }:
{
services.mako = {
enable = true;
actions = true;
anchor = "top-right";
defaultTimeout = 5000;
icons = true;
iconPath = with config.gtk.iconTheme; "${package}/share/icons/${name}";
layer = "overlay";
margin = "20";
padding = "10";
sort = "-time";
borderRadius = 10;
};
}