diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2020-08-25 16:35:58 +0100 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2020-08-25 16:35:58 +0100 |
| commit | 8b4c42ea22454f975cf7eb7d83039a63df909dcc (patch) | |
| tree | 22985446e4542276b8a98a97765e974a8df2a7c4 | |
| parent | 14646261fa7ec84eacae5ccdbb05190d22256783 (diff) | |
Install auto-cpufreq and its service
| -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 |
