aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: 2fe6063067172c316cbff4d2d338bd51e4bfca29 (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
34
35
#include <jo_lowbat.hpp>

int main(int argc, const char *argv[]) {
	string			msg       = nullptr;
	string			acstat    = nullptr;
	string			batlvl    = nullptr;
	stringstream	battoint  = nullptr;
	int				batlvlint = 0;

	if (memcmp(argv[1], "--say", strlen(argv[1])))
		msg = "beep beep - low battery";
	else
		msg = argv[2];

	while (true) {
		acstat = jo_exec("acpi | awk '{print $3}' | rev | cut -c 2- | rev");
		batlvl = jo_exec("acpi | awk '{print $4}' | rev | cut -c 3- | rev");
		battoint = batlvl;
		battoint >> batlvlint;
		if (batlvlint < 15) {
			while (!memcmp(acstat, "Discharging", strlen(acstat))) {
				jo_notify(batlvl);
				if (memcmp(argv[1], "--silent", strlen(argv[1])))
					jo_speak(msg);
				sleep_for(seconds(20));
				acstat = jo_exec("acpi | awk '{print $3}' | rev | cut -c 2- | rev");
				batlvl = jo_exec("acpi | awk '{print $4}' | rev | cut -c 3- | rev");
				if (!memcmp(acstat, "Charging", strlen(acstat)))
					break ;
			}
		}
		sleep_for(seconds(240));
	}
	return 0;
}