move stuff around

This commit is contained in:
2026-02-23 11:11:56 +01:00
parent d74b3a5109
commit f2ef0c0b16
16 changed files with 77 additions and 17 deletions

49
modules/gui/mako.nix Normal file
View File

@@ -0,0 +1,49 @@
{ ... }:
{
services.mako = {
enable = true;
settings = {
max-history = 15;
default-timeout = 5000;
anchor = "top-right";
max-visible = 5;
width = 320;
height = 300;
margin = "25,25,10,10";
padding = 10;
font = "Cousine Nerd Font mono";
border-radius = 15;
background-color = "#1e1e2e";
text-color = "#cdd6f4";
border-color = "#89b4fa";
progress-color = "over #313244";
output = "DP-1";
on-notify = "exec paplay /usr/share/sounds/freedesktop/stereo/dialog-information.oga";
};
extraConfig = ''
[urgency=high]
border-color=#fe640b
[urgency=low]
border-color=#FF6347
[urgency=critical]
on-notify=exec paplay /usr/share/sounds/freedesktop/stereo/window-attention.oga
border-color=#FF0000
[mode=do-not-disturb]
invisible=1
on-notify=none
[app-name=wp-vol]
layer=overlay
history=0
anchor=center
group-by=app-name
format=<b>%s</b>\n%b
'';
};
}