waybar split in files

This commit is contained in:
2026-06-16 23:30:29 +02:00
parent 6ff3e03029
commit 146fad0ce6
15 changed files with 280 additions and 246 deletions

View File

@ -0,0 +1,25 @@
{ 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;
};
};
};
}