custom weather notifier

This commit is contained in:
2025-09-30 09:50:05 -06:00
parent 3ed4ccca9e
commit 725c13a6b6
5 changed files with 84 additions and 8 deletions

View File

@@ -1,13 +1,11 @@
{ config, pkgs, ... }:
{
programs.mako = {
services.mako = {
enable = true;
settings = ''
{
anchor = "top-center"
}
'';
settings = {
anchor = "top-center";
};
};
}

View File

@@ -17,6 +17,7 @@
"river/tags"
];
modules-center = [
"custom/currents"
"river/window"
];
modules-right = [
@@ -153,6 +154,13 @@
on-click = "pavucontrol";
};
};
"custom/currents"= {
interval= 30;
exec= "currents --waybar";
return-type= "json";
};
};
};