mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-28 04:39:25 +00:00
9 lines
264 B
Bash
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
|