Nix fmt rfc style (more or less)

This commit is contained in:
Filippo Berto 2024-08-13 12:22:23 +02:00
parent e7496c447a
commit 515f098644
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
146 changed files with 2607 additions and 906 deletions

View file

@ -68,11 +68,17 @@ in
"numlock" = true;
"capslock" = true;
"format" = "{name} {icon}";
"format-icons" = { "locked" = ""; "unlocked" = ""; };
"format-icons" = {
"locked" = "";
"unlocked" = "";
};
};
"idle_inhibitor" = {
"format" = "{status} {icon}";
"format-icons" = { "activated" = ""; "deactivated" = ""; };
"format-icons" = {
"activated" = "";
"deactivated" = "";
};
};
tray.spacing = 10;
clock = {
@ -104,7 +110,17 @@ in
"backlight" = {
# "device"= "acpi_video1";
"format" = "{percent}% {icon}";
"format-icons" = [ "" "" "" "" "" "" "" "" "" ];
"format-icons" = [
""
""
""
""
""
""
""
""
""
];
};
"battery" = {
"states" = {
@ -118,7 +134,13 @@ in
"format-alt" = "{time} {icon}";
# "format-good"= ""; # An empty format will hide the module
# "format-full"= "";
"format-icons" = [ "" "" "" "" "" ];
"format-icons" = [
""
""
""
""
""
];
};
# "battery#bat2" = { "bat" = "BAT2"; };
"network" = {
@ -145,7 +167,11 @@ in
"phone" = "";
"portable" = "";
"car" = "";
"default" = [ "" "" "" ];
"default" = [
""
""
""
];
};
"on-click" = "${pkgs.pavucontrol}/bin/pavucontrol";