aboutsummaryrefslogtreecommitdiffstats
path: root/bin/lowbat
blob: a8ae16c9dfb5c30b1173f0eec83acfd584858230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh

if [ ! "$1" = "--silent" ]; then
	if [ ! "$1" = "--say" ]; then
		message="beep beep - low battery"
	else
		message=$2
	fi
fi

notify() {
	notify-send "Low battery: $batlvl%" "Please plug in computer" -u critical -t 15000
	if [ ! "$message" = "--silent" ]; then
		echo "$message" | espeak
	fi
}

while [ 1 ]; do
	acstat=$(acpi | awk '{print $3}' | rev | cut -c 2- | rev)
	batlvl=$(acpi | awk '{print $4}' | rev | cut -c 3- | rev)
	if [ $batlvl -lt 115 ]; then
		while [ "$acstat" = "Discharging" ]; do
			$(notify)
			sleep 20
			acstat=$(acpi | awk '{print $3}' | rev | cut -c 2- | rev)
			batlvl=$(acpi | awk '{print $4}' | rev | cut -c 3- | rev)
			if [ "$acstat" = "Charging" ]; then
				break
			fi
		done
	fi
	sleep 240
done