synix/modules/home/waybar/modules/wireplumber.nix
sid 95a533c876
All checks were successful
Deploy docs / build-and-deploy (push) Successful in 3s
initial commit
2026-02-23 20:34:35 +01:00

18 lines
341 B
Nix

# wireplumber
{ lib, ... }:
let
inherit (lib) mkDefault;
in
{
format = mkDefault "{icon} {volume}";
format-muted = mkDefault "mute"; # <U+f6a9> does not render. See issue #144
format-icons = mkDefault [
""
""
""
];
on-click = mkDefault "helvum";
max-volume = mkDefault 150;
scroll-step = mkDefault 1;
}