mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 04:09:23 +00:00
add migration for low power notify
This commit is contained in:
15
migrations/1752168292.sh
Executable file
15
migrations/1752168292.sh
Executable 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
|
||||
|
Reference in New Issue
Block a user