diff options
author | zachir <zachir@librem.one> | 2023-08-19 12:04:53 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-08-19 12:04:53 -0500 |
commit | 29337dc64b734b0302b03b68526884641d10fa92 (patch) | |
tree | 2b1edd3678057813adc4931543f7c8740891b82c /waybar | |
parent | 66331e70bb89d7de1c6051372dc92d520730c690 (diff) |
cla: Fix temps for CPU and GPU
Diffstat (limited to 'waybar')
-rw-r--r-- | waybar/config | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/waybar/config b/waybar/config index 8953193..b248946 100644 --- a/waybar/config +++ b/waybar/config @@ -72,10 +72,10 @@ }, "temperature#cpu": { // "thermal-zone": 2, - "hwmon-path": "/sys/class/hwmon/hwmon4/temp1_input", + "hwmon-path": "/sys/class/hwmon/hwmon2/temp3_input", "critical-threshold": 80, // "format-critical": "{temperatureC}°C {icon}", - "format": "{temperatureC}°C", + "format": "CPU {temperatureC}°C", "format-icons": ["", "", ""] }, "temperature#gpu": { @@ -83,7 +83,7 @@ "hwmon-path": "/sys/class/hwmon/hwmon1/temp2_input", "critical-threshold": 110, // "format-critical": "{temperatureC}°C {icon}", - "format": "{temperatureC}°C", + "format": "GPU {temperatureC}°C", "format-icons": ["", "", ""] }, "backlight": { |