add migration for low power notify

This commit is contained in:
Mads Nedergaard Paulsen
2025-07-10 19:32:52 +02:00
parent 4c58879481
commit 957b23966c

15
migrations/1752168292.sh Executable file
View File

@ -0,0 +1,15 @@
echo "Enable battery low notifications for laptops"
if ls /sys/class/power_supply/BAT* &>/dev/null; then
mkdir -p ~/.config/systemd/user
cp ~/.local/share/omarchy/config/systemd/user/omarchy-battery-monitor.* ~/.config/systemd/user/
systemctl --user daemon-reload
systemctl --user enable --now omarchy-battery-monitor.timer || true
echo "Battery monitoring enabled - you'll receive notifications at 10% battery"
else
echo "No battery detected - skipping battery monitor setup"
fi