Files
nix-config/homeConfigs/global/wayland/waybar/pulseaudio.nix
2026-06-16 23:30:29 +02:00

26 lines
551 B
Nix

{ lib, pkgs, ... }:
{
programs.waybar.settings.mainBar = {
pulseaudio = {
format = "{icon}{volume}%";
format-bluetooth = " {icon} {volume}%";
format-muted = "";
format-icons = {
headphones = " ";
handsfree = "󰋎 ";
headset = "󰋎 ";
phone = " ";
portable = " ";
car = " ";
default = [" " " " " "];
};
on-click = "${lib.getExe pkgs.pavucontrol}";
states = {
low = 79;
warning = 99;
high = 100000;
};
};
};
}