Files
arthur-os/bin/omarchy-powerprofiles-init
T
2026-04-28 12:03:46 -04:00

10 lines
237 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Set the correct power profile on boot based on current AC/battery state.
if omarchy-battery-present && ! omarchy-ac-present; then
omarchy-powerprofiles-set battery
else
omarchy-powerprofiles-set ac
fi