mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-02-23 05:15:13 +08:00
15 lines
369 B
Bash
Executable file
15 lines
369 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PERCENTAGE="$(pmset -g batt | grep -Eo "...%" | awk '{print $1}')"
|
|
CHARGING="$(pmset -g batt | grep 'AC Power')"
|
|
|
|
# The item invoking this script (name $NAME) will get its icon and label
|
|
# updated with the current battery status
|
|
|
|
if [[ "$CHARGING" != "" ]]; then
|
|
STATE="CHAR:"
|
|
else
|
|
STATE="BATT:"
|
|
fi
|
|
|
|
sketchybar --set "$NAME" label="$STATE $PERCENTAGE"
|