mirror of
https://github.com/edu4rdshl/linuxscripts.git
synced 2026-07-18 07:34:45 +00:00
9 lines
307 B
Bash
Executable file
9 lines
307 B
Bash
Executable file
#!/usr/bin/env sh
|
|
if [ "$1" == "start" ]; then
|
|
echo 0 > /sys/devices/system/cpu/intel_pstate/no_turbo
|
|
tee /sys/devices/system/cpu/cpufreq/policy*/scaling_governor <<< performance
|
|
exit
|
|
elif [ "$1" == "stop" ]; then
|
|
tee /sys/devices/system/cpu/cpufreq/policy*/scaling_governor <<< powersave
|
|
exit
|
|
fi
|