nix-config/modules/hosts/t480/dwm/dwmblocks/cpu.nix
Oliver Davies d1eaa83712
All checks were successful
/ check (push) Successful in 52s
Add CPU usage percentage
2025-08-20 10:01:12 +01:00

17 lines
368 B
Nix

{
flake.modules.homeManager.gui =
{ pkgs, ... }:
{
home.packages = [
(pkgs.writeShellApplication {
name = "status-cpu";
runtimeInputs = with pkgs; [ sysstat ];
text = ''
mpstat | grep -A 5 "%idle" | tail -n 1 | awk -F " " '{printf "%s%% CPU", 100 - $ 12}'
'';
})
];
};
}