mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Migrate existing waybar configs to pin battery to BAT0 Follow-up to #4918: that PR updated the default template, but existing users keep their copy at ~/.config/waybar/config.jsonc and won't pick up the fix without running omarchy-refresh-waybar (which wipes local customizations). Patch the existing file in place and restart waybar. * Make battery-pin migration tolerant of whitespace variants Per Copilot review: grep/sed patterns now match "battery" : {, "battery":{, and "bat" : "..." variants that hand-edited configs may use. Also only restart waybar when a battery block actually exists to edit.
11 lines
401 B
Bash
11 lines
401 B
Bash
echo "Pin waybar battery module to BAT0 to prevent crash on HID battery disconnect"
|
|
|
|
CONFIG_FILE=~/.config/waybar/config.jsonc
|
|
|
|
if [[ -f "$CONFIG_FILE" ]] \
|
|
&& ! grep -Eq '"bat"[[:space:]]*:' "$CONFIG_FILE" \
|
|
&& grep -Eq '"battery"[[:space:]]*:[[:space:]]*\{' "$CONFIG_FILE"; then
|
|
sed -i -E '/"battery"[[:space:]]*:[[:space:]]*\{/a\ "bat": "BAT0",' "$CONFIG_FILE"
|
|
omarchy-restart-waybar
|
|
fi
|