increase temp threshold to 85% of critical

This commit is contained in:
mbecker20
2023-01-11 08:51:18 +00:00
parent d0540669b4
commit 5adbba61ec

View File

@@ -273,7 +273,7 @@ impl State {
.iter()
.map(|c| {
if let Some(critical) = c.critical {
if c.temp / critical > 0.75 {
if c.temp / critical > 0.85 {
format!(
"{}: *{:.1}°* (*{:.1}%* to critical) 🌡️",
c.label,