9 lines
248 B
Bash
9 lines
248 B
Bash
|
#!/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
|