Files
cyper-nix/home/desktop/waybar/hyprland-wm.nix
2026-04-03 23:37:52 +02:00

24 lines
566 B
Nix

{
widgets = {
"hyprland/workspaces" = {
format = "{icon}";
format-icons = {
default = "";
active = "";
};
};
"custom/mako" = {
tooltip = false;
format = "{icon}";
format-icons = {
enabled = " ";
disabled = " ";
};
return-type = "json";
exec = "makoctl mode | grep -q do-not-disturb && echo '{\"text\":\"\",\"class\":\"disabled\"}' || echo '{\"text\":\"\",\"class\":\"enabled\"}'";
on-click = "makoctl mode -t do-not-disturb";
interval = 1;
};
};
}