Files
omarchy/install/power.sh
2025-06-24 08:48:33 -07:00

9 lines
264 B
Bash

yay -S --noconfirm power-profiles-daemon
if ls /sys/class/power_supply/BAT* &>/dev/null; then
# This computer runs on a battery, leave powerprofile at Balanced
else
# Always use maximum power when using a desktop machine
powerprofilesctl set performance
fi