We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08d95b6 commit 3e52842Copy full SHA for 3e52842
auto_cpufreq/core.py
@@ -870,7 +870,7 @@ def sysinfo():
870
for sensor in temp_sensors:
871
# iterate over all temperatures in the current sensor
872
for temp in temp_sensors[sensor]:
873
- if 'CPU' in temp.label and temp.current != 0:
+ if ('CPU' in temp.label or 'Tctl' in temp.label) and temp.current != 0:
874
temp_per_cpu = [temp.current] * online_cpu_count
875
break
876
else: continue
0 commit comments