A lightweight KDE Plasma 6 panel widget that displays live system vitals directly in your top bar.
CPU: 26% | RAM: 8.8/39.0G | TEMP: 96°C | 🔋BAT: 78% | PWR: +20W | NET: ↓82.2K ↑58.9K
- Live monitoring — CPU usage, RAM, CPU temperature, GPU metrics (when available), battery status, power draw, network speed
- Display modes — Text, Icons, or Icons + Text for the panel view
- Custom icons — Pick any icon from your installed theme for each metric
- Font customization — Choose any system font and size
- Configurable — Toggle each metric, adjust refresh rate, organized in 3 settings tabs
- Minimal footprint — Native KDE KSysGuard sensors + QML, no heavy dependencies or excessive subprocesses
- Click to expand — Detailed popup view with all stats
- KDE Plasma 6.0+
Install directly from the KDE Store:
👉 Get KVitals on the KDE Store
Or from within KDE Plasma:
- Right-click on the panel → Add Widgets...
- Click Get New Widgets... → Download New Plasma Widgets...
- Search for "KVitals"
- Click Install
curl -fsSL https://github.com/yassine20011/kvitals/releases/latest/download/install-remote.sh | bashwget -qO- https://github.com/yassine20011/kvitals/releases/latest/download/install-remote.sh | bashgit clone https://github.com/yassine20011/kvitals.git
cd kvitals
bash install.shThen restart Plasma and add the widget:
plasmashell --replace &- Right-click on the panel → Add Widgets...
- Search for KVitals
- Drag it onto your panel
Right-click the widget → Configure KVitals... to access settings in three tabs:
- General — Display mode, icon size, font, update interval
- Metrics — Toggle CPU, RAM, Temperature, Battery, Power, Network
- Icons — Customize icons for each metric from your theme
See the full configuration reference for details.
rm -rf ~/.local/share/plasma/plasmoids/org.kde.plasma.kvitalsThen restart Plasma: plasmashell --replace &
kvitals/
├── metadata.json # Plasmoid metadata
├── install.sh # Local install script
├── install-remote.sh # Remote install (curl/wget)
├── CHANGELOG.md # Version history
├── docs/ # Documentation
│ ├── installation.md
│ ├── configuration.md
│ ├── architecture.md
│ ├── contributing.md
│ └── troubleshooting.md
└── contents/
├── config/
│ ├── config.qml # Tab registration
│ └── main.xml # Config schema
└── ui/
├── main.qml # Widget orchestrator
├── CompactView.qml # Panel representation
├── FullView.qml # Popup representation
├── configGeneral.qml # General settings tab
├── configMetrics.qml # Metrics settings tab
├── configIcons.qml # Icons settings tab
└── sensors/ # Sensor modules
├── qmldir # QML module definition
├── CpuSensors.qml # CPU usage
├── MemorySensors.qml # RAM usage
├── TempSensors.qml # CPU temperature
├── GpuSensors.qml # GPU usage, VRAM, temp
├── BatterySensors.qml # Battery & power
├── NetworkSensors.qml # Network speed
└── Utils.qml # Shared formatting helpers
By contributing, you agree that your contributions will be licensed under the GPL-3.0 License.


