We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
For AMD ryzen systems, the temperature of CPU is reported in Tctl and not Package. Therefore in the evil\temperature.lua we have to change from:
Tctl
Package
evil\temperature.lua
local temp_script = [[ sh -c " sensors | grep Package | awk '{print $4}' | cut -c 2-3 "]]
to:
local temp_script = [[ sh -c " sensors | grep 'Tctl' | awk '{print $2}' | cut -c 2-3 "]]
Would you be able to add this to the wiki? Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
For AMD ryzen systems, the temperature of CPU is reported in
Tctl
and notPackage
. Therefore in theevil\temperature.lua
we have to change from:to:
Would you be able to add this to the wiki? Thanks!
The text was updated successfully, but these errors were encountered: