Skip to content

Instantly share code, notes, and snippets.

@maybe-hello-world
Last active July 11, 2022 19:10
Show Gist options
  • Save maybe-hello-world/1484d0c64cdaa3053b0e090c2cbc88f9 to your computer and use it in GitHub Desktop.
Save maybe-hello-world/1484d0c64cdaa3053b0e090c2cbc88f9 to your computer and use it in GitHub Desktop.
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