Created
January 15, 2022 02:19
-
-
Save ompugao/f4b47f3778251ab91298803a19e08b5e to your computer and use it in GitHub Desktop.
/etc/auto-cpufreq.conf
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
# settings for when connected to a power source | |
[charger] | |
# see available governors by running: cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors | |
# preferred governor. | |
governor = performance | |
# minimum cpu frequency (in kHz) | |
# example: for 800 MHz = 800000 kHz --> scaling_min_freq = 800000 | |
# see conversion info: https://www.rapidtables.com/convert/frequency/mhz-to-hz.html | |
# to use this feature, uncomment the following line and set the value accordingly | |
# scaling_min_freq = 800000 | |
# maximum cpu frequency (in kHz) | |
# example: for 1GHz = 1000 MHz = 1000000 kHz -> scaling_max_freq = 1000000 | |
# see conversion info: https://www.rapidtables.com/convert/frequency/mhz-to-hz.html | |
# to use this feature, uncomment the following line and set the value accordingly | |
# scaling_max_freq = 1000000 | |
# turbo boost setting. possible values: always, auto, never | |
turbo = always | |
# settings for when using battery power | |
[battery] | |
# see available governors by running: cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors | |
# preferred governor | |
# governor = powersave | |
governor = ondemand | |
# minimum cpu frequency (in kHz) | |
# example: for 800 MHz = 800000 kHz --> scaling_min_freq = 800000 | |
# see conversion info: https://www.rapidtables.com/convert/frequency/mhz-to-hz.html | |
# to use this feature, uncomment the following line and set the value accordingly | |
# scaling_min_freq = 800000 | |
# maximum cpu frequency (in kHz) | |
# see conversion info: https://www.rapidtables.com/convert/frequency/mhz-to-hz.html | |
# example: for 1GHz = 1000 MHz = 1000000 kHz -> scaling_max_freq = 1000000 | |
# to use this feature, uncomment the following line and set the value accordingly | |
# scaling_max_freq = 1000000 | |
# turbo boost setting. possible values: always, auto, never | |
turbo = auto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment