You can find information on my terminal configuration here
Last active
November 2, 2024 03:12
-
-
Save Jahhein/45b8e8c9c36a0932189a5037f990bcdd to your computer and use it in GitHub Desktop.
Display Apple AirPods battery levels via Terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Airpods.sh | |
# Output connected Airpods battery levels via CLI | |
AIRPOD_ICON=$'\uF7CC' | |
BATTERY_INFO=( | |
"BatteryPercentCombined" | |
"HeadsetBattery" | |
"BatteryPercentSingle" | |
"BatteryPercentCase" | |
"BatteryPercentLeft" | |
"BatteryPercentRight" | |
) | |
BT_DEFAULTS=$(defaults read /Library/Preferences/com.apple.Bluetooth) | |
SYS_PROFILE=$(system_profiler SPBluetoothDataType 2>/dev/null) | |
MAC_ADDR=$(grep -b2 "Minor Type: Headphones"<<<"${SYS_PROFILE}"|awk '/Address/{print $3}') | |
CONNECTED=$(grep -ia6 "${MAC_ADDR}"<<<"${SYS_PROFILE}"|awk '/Connected: Yes/{print 1}') | |
BT_DATA=$(grep -ia6 '"'"${MAC_ADDR}"'"'<<<"${BT_DEFAULTS}") | |
if [[ "${CONNECTED}" ]]; then | |
for info in "${BATTERY_INFO[@]}"; do | |
declare -x "${info}"="$(awk -v pat="${info}" '$0~pat{gsub (";",""); print $3 }'<<<"${BT_DATA}")" | |
[[ ! -z "${!info}" ]] && OUTPUT="${OUTPUT} $(awk '/BatteryPercent/{print substr($0,15)": "}'<<<"${info}")${!info}%" | |
done | |
printf "%s\\n" "${AIRPOD_ICON} ${OUTPUT}" | |
else | |
printf "%s Not Connected\\n" "${OUTPUT}" | |
fi | |
exit 0 |
The script here doesn't work for me, but this command does:
system_profiler SPBluetoothDataType 2>/dev/null | grep -o "Left Battery Level: [0-9]*%" | grep -o "[0-9]*%"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Same problem with AirPods 2