Setting up
-
2. Installing TLP on Manjaro Linux
TLP is a powerful and easy-to-use tool for optimizing battery life on Linux laptops. It applies advanced settings automatically at startup.
sudo pacman -S tlp tlp-rdw
Once installed, enable and start TLP with:
sudo systemctl enable tlp sudo systemctl start tlp
It runs automatically at boot — no configuration needed for most users.
-
3. Enabling Auto-CPUFreq for Dynamic CPU Scaling
auto-cpufreq is a modern, intelligent CPU frequency manager that dynamically adjusts performance based on battery or AC power.
git clone https://github.com/AdnanHodzic/auto-cpufreq.git cd auto-cpufreq && sudo ./auto-cpufreq-installer
Then run the daemon installer:
sudo auto-cpufreq --install
This tool works great alongside TLP and is especially helpful on modern laptops.
-
4. Optimizing with PowerTOP
PowerTOP by Intel analyzes and helps to reduce power consumption on Linux.
sudo pacman -S powertop
To start optimization interactively:
sudo powertop --auto-tune
You can also analyze live stats by running:
sudo powertop
-
5. Installing Laptop Mode Tools (Optional)
laptop-mode-tools is not available in official Manjaro repos but may be found in the AUR. Note: it may conflict with TLP.
yay -S laptop-mode-tools
Then enable and start the service:
sudo systemctl enable laptop-mode sudo systemctl start laptop-mode
May conflict with TLP — test to see which works best for your setup.
-
6. Additional Tips to Save Battery
- Lower Screen Brightness — Use Fn keys or brightness applets.
- Disable Bluetooth when not in use:
rfkill block bluetooth
- Turn Off Wi-Fi if not needed:
nmcli radio wifi off
- Use Lightweight Desktop Environments — XFCE and MATE consume less power.
Contents