Open DemonInTheCloset opened 2 years ago
AMD Ryzen 1600X sensors doesn't have a per core readout so the sed/awk script fails:
$ sensors k10temp-pci-00c3 Adapter: PCI adapter Tctl: +56.6°C Tdie: +36.6°C
Add a variable/option to use the Tdie readout instead.
Tdie
In my case sensors | sed -n 's/Tdie:\s*+//p' is enough.
sensors | sed -n 's/Tdie:\s*+//p'
Thanks for the report. I guess we could fallback on Tdie if no Tccd/Core are found in sensors output.
Tccd/Core
sensors
Problem
AMD Ryzen 1600X sensors doesn't have a per core readout so the sed/awk script fails:
Proposed solution
Add a variable/option to use the
Tdie
readout instead.In my case
sensors | sed -n 's/Tdie:\s*+//p'
is enough.