generated from cosmic-utils/cosmic-applet-template-old
-
-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
Currently I have minimon set to show CPU and GPU temps as ring graphs, and it's always distracting and momentarily alarming when I notice the rings are 35-45% of full at idle, e.g.
As a dirty hack, I could always hardcode
minimon-applet/src/sensors/cputemp.rs
Lines 297 to 299 in d917a5c
| let percentage: u8 = latest.round().clamp(0.0, 100.0) as u8; | |
| crate::svg_graph::ring(&value, percentage, None, &self.svg_colors) |
to read:
let percentage: u8 = ((latest - 21) / .79).round().clamp(0.0, 100.0) as u8;but I'd much prefer to set ambient and critical temps in my config.
Metadata
Metadata
Assignees
Labels
No labels