diff options
| -rw-r--r-- | gohan.sh | 7 | ||||
| -rw-r--r-- | packages.csv | 1 |
2 files changed, 8 insertions, 0 deletions
@@ -144,6 +144,11 @@ install_composer() { [ -f "/home/$name/.local/bin/composer" ] && chown "$name:$name" "/home/$name/.local/bin/composer" } +install_auto_cpufreq_service() { + systemctl start auto-cpufreq + systemctl enable auto-cpufreq +} + ### THE ACTUAL SCRIPT ### install_from_pacman dialog || error "Are you sure you're running this as the root user and have an internet connection?" @@ -170,4 +175,6 @@ install_nvm install_composer +install_auto_cpufreq_service + clear diff --git a/packages.csv b/packages.csv index 2dc06e7..b366880 100644 --- a/packages.csv +++ b/packages.csv @@ -10,6 +10,7 @@ ,xorg-server,is the display server ,xorg-xinit,will allow us to start the display server A,brave-bin,is a free and open-source web browser that blocks ads and website trackers +A,auto-cpufreq-git,an automatic CPU speed & power optimizer G,https://github.com/davidtsadler/dmenu.git,is a dynamic menu G,https://github.com/davidtsadler/dwm.git,is a dynamic window manager G,https://github.com/davidtsadler/st.git,is a simple terminal |
