shell script to undervolt AMD Ryzen laptops
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
amd_laptop_undervolt/powersave.sh

8 lines
151 B

#!/bin/sh
GOVERNOR='powersave'
if [ "$1" ]; then
GOVERNOR="$1"
fi
echo "$GOVERNOR" | sudo tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor