arch-maride-flavour/flavours/cpu.flavour/install.sh
2017-09-06 16:00:40 +02:00

11 lines
262 B
Bash
Executable File

#!/bin/sh
echo "~> Installing thermald cpupower"
pacstrap /mnt thermald cpupower
echo " Setting 'ondemand' governor"
arch-chroot /mnt cpupower frequency-set -g ondemand
echo " Start cpupower on boot"
arch-chroot /mnt systemctl enable cpupower
amf_return=0