diff --git a/docs/README.md b/docs/README.md index 203a7c8..4bea8b3 100644 --- a/docs/README.md +++ b/docs/README.md @@ -7,3 +7,4 @@ This folder contains a bunch of general information on how to get the base of a * [Setup swap (you really do need this)](swap.md) * [journald Tweaks (make it less chatty and resource hungry)](journald.md) * [Standard Raspberry Pi Toolchain Setup](rpi_tools.md) +* [CPU Governor](cpu_governor.md) diff --git a/docs/cpu_governor.md b/docs/cpu_governor.md new file mode 100644 index 0000000..593d5ed --- /dev/null +++ b/docs/cpu_governor.md @@ -0,0 +1,11 @@ +# CPU Governor + +The below commands setup a CPU governor. This is to help reduce power consumption and ensure the Raspberry Pi stays as cold as possible. + +``` sh + +pacman -S cpupower +sed -i "s/#governor='ondemand'/governor='powersave'/g" /etc/default/cpupower +systemctl enable --now cpupower + +``` diff --git a/notes.txt b/notes.txt index 5c6e673..782e91e 100644 --- a/notes.txt +++ b/notes.txt @@ -1,12 +1,3 @@ -######################################## -# cpu power / governor -######################################## - -pacman -S cpupower -sed -i "s/#governor='ondemand'/governor='powersave'/g" /etc/default/cpupower -systemctl enable --now cpupower - - ######################################## # AUR package manager ########################################