2023-05-31 06:52:57 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Print battery percentage to stdout
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2023-10-07 10:43:32 +02:00
|
|
|
if [ "$(uname -s)" = "Darwin" ]; then
|
2023-11-21 09:19:40 +01:00
|
|
|
pmset -g batt | tail -n 1 | grep -Eo "\d+%" | cut -d% -f1
|
2023-05-31 06:52:57 +02:00
|
|
|
else # Linux
|
2023-10-07 10:43:32 +02:00
|
|
|
cat /sys/class/power_supply/BAT0/capacity
|
2023-05-31 06:52:57 +02:00
|
|
|
fi
|