From 02f071a6814fd369fb3da705eef2fd55bee3694b Mon Sep 17 00:00:00 2001 From: Alexey Berezhok Date: Mon, 25 May 2026 13:31:04 +0300 Subject: [PATCH] Added fix for showing temperature for AMD Ryzen 9 5950X and similar --- .gitignore | 3 ++- sysmontask/cpu.py | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9494459..ebad183 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ exp.py exp.glade exp.glade~ -netSidepane.glade~ +netSidepane.glade~ disk.glade~ taskManager.glade~ taskManger.py @@ -45,3 +45,4 @@ var/ .vscode/ .buildconfig +.zed diff --git a/sysmontask/cpu.py b/sysmontask/cpu.py index 0c76b63..60d35f2 100644 --- a/sysmontask/cpu.py +++ b/sysmontask/cpu.py @@ -201,6 +201,9 @@ def cpuUpdate(self): if lis.label=='Tdie': self.cpuTempLabelValue.set_text('{0} °C'.format(int(lis.current))) break + if lis.label=='Tccd1': + self.cpuTempLabelValue.set_text('{0} °C'.format(int(lis.current))) + break elif 'zenpower' in temperatures_list: for lis in temperatures_list['zenpower']: if lis.label=='Tdie':