Anima System Heartbeat: Giving Your Linux Desktop a Pulse
I built something weird and useful: a biometric hardware monitor that maps your system’s physical strain into an organic, beating heart on your desktop. It’s called Anima System Heartbeat 🫀, and it turns CPU/GPU load into a real-time visual and auditory pulse. Because why stare at boring graphs when your machine can literally have a heartbeat? What It Does The project ships two flavors: Desktop Widget (kimi_desktop_pulse.py): A borderless, floating heart that lives on your Linux desktop. Drag it wherever you want. Right-click to kill it. It beats faster when your system is stressed, slower when it’s idle. Web Dashboard (kimi_heartbeat.py): A lightweight Flask-based local dashboard with full metric breakdowns and a stylized CSS pulse. The Nerdy Bits Unified Stress Tracking: It samples both CPU usage and NVIDIA GPU utilization, then uses whichever is higher (max(cpu, gpu)) to drive the pulse engine. This means GPU-heavy workloads (rendering, training, gaming) register just as hard as CPU-bound tasks. ...