Last active
July 11, 2022 19:10
-
-
Save maybe-hello-world/1484d0c64cdaa3053b0e090c2cbc88f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SUBSYSTEM=="thermal" | |
KERNEL=="thermal_zone0" | |
# mid-aggressive settings | |
# If the temp hits 35c, turn on the fan. Turn it off again when it goes back down to 30. | |
ATTR{trip_point_3_temp}="350000" | |
ATTR{trip_point_3_hyst}="5000" | |
# | |
# If the temp hits 40c, higher RPM. | |
ATTR{trip_point_2_temp}="40000" | |
ATTR{trip_point_2_hyst}="5000" | |
# | |
# If the temp hits 45c, higher RPM. | |
ATTR{trip_point_1_temp}="45000" | |
ATTR{trip_point_1_hyst}="5000" | |
# | |
# If the temp hits 50c, highest RPM. | |
ATTR{trip_point_0_temp}="50000" | |
ATTR{trip_point_0_hyst}="5000" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment