nix-config/modules/hosts/t480/dwm/dwmblocks/cpu.nix

18 lines
368 B
Nix
Raw Normal View History

2025-08-20 08:00:00 +01:00
{
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}'
'';
})
];
};
}