You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
400 B
13 lines
400 B
#!/bin/sh |
|
|
|
BAT_INFO=${BLOCK_INSTANCE:-"$(acpi -b | grep ': [^Unknown]')"} |
|
|
|
CAPACITY=$(echo "$BAT_INFO" | awk '{ print int($4) }') |
|
|
|
if [ "$(echo "$BAT_INFO" | awk '{ print $6 }')" = "remaining" ]; then |
|
if [ "$CAPACITY" -lt "20" ]; then |
|
notify-send -u critical -r 1 -t 30000 "Battery critically low!" |
|
fi |
|
elif [ "$CAPACITY" -ge "95" ]; then |
|
notify-send -u low -r 1 "You should probably unplug." |
|
fi
|
|
|