aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: a6c291d87c0344e1450db49bd29cdfa66cd600e9 (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
36
37
38
39
40
41
42
43
44
45
46
#include <jo_lowbat.hpp>
#include <iostream>
#include <cstring>
#include <thread>
#include <chrono>

using namespace this_thread;
using namespace chrono;

int main(int argc, const char *argv[]) {
	string*	msg;
	string	acstat;
	string	batlvl;
	int		batlvlint;
	(void)argc;
	(void)argv;
	(void)msg;
	(void)batlvl;
	(void)batlvlint;
	(void)acstat;

	Lowbat lowbat;
	if (lowbat.jo_testAcpi())
		return (1);
	while (true) {
		while (lowbat.jo_fetchBatlvl() < 115 && !system("acpi | grep -q Discharging")) {
			lowbat.jo_notify();
			if (argc > 1 && strcmp(argv[1], "--silent")) {
				if (argc > 2 && !strcmp(argv[1], "--say")) {
					msg = new string(argv[2]);
				}
				else {
					msg = new string("beep beep - low battery");
				}
				jo_speak(*msg);
				delete msg;
			}
			cout << "Sleep for 20s" << endl;
			sleep_for(seconds(20));
		}
		cout << "Sleep for 4m" << endl;
		sleep_for(seconds(240));
	}

	return 0;
}