Prepare for battery monitor to be installed on first run

This commit is contained in:
David Heinemeier Hansson
2025-08-25 07:26:25 +02:00
parent bdfc0fad5d
commit 28ba0bff7a
4 changed files with 13 additions and 20 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
if ls /sys/class/power_supply/BAT* &>/dev/null; then
# This computer runs on a battery
powerprofilesctl set balanced || true
# Enable battery monitoring timer for low battery notifications
systemctl --user enable --now omarchy-battery-monitor.timer
else
# This computer runs on power outlet
powerprofilesctl set performance || true
fi