Files
arthur-os/bin/omarchy-battery-present
2026-04-28 12:03:46 -04:00

13 lines
256 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Returns true if a battery is present on the system.
for bat in /sys/class/power_supply/BAT*; do
[[ -r $bat/present ]] &&
[[ $(cat $bat/present) == "1" ]] &&
[[ $(cat $bat/type) == "Battery" ]] &&
exit 0
done
exit 1