blob: 73899a763abf5ad75356675f7d6285693a4b5f30 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
#include <jo_lowbat.hpp>
#include <iostream>
#include <array>
#include <memory>
#include <algorithm>
using namespace std;
uint8_t
Lowbat::jo_testAcpi(void) {
if (system("which acpi > /dev/null 2>&1")) {
cout << "acpi is not installed. Please install it in order to run lowbat" << endl;
return 1;
}
cout << "acpi is installed" << endl;
return 0;
}
uint8_t
Lowbat::jo_testNotifySend(void) {
if (system("which notify-send > /dev/null 2>&1")) {
cout << "notify-send is not installed. Please install it in order to run lowbat" << endl;
return 1;
}
cout << "notify-send is installed" << endl;
return 0;
}
uint8_t
Lowbat::jo_testEspeak(void) {
if (system("which espeak > /dev/null 2>&1")) {
cout << "espeak is not installed. Please install it in order to run --say option" << endl;
return 1;
}
cout << "espeak is installed" << endl;
return 0;
}
int
Lowbat::jo_fetchBatlvl(void) {
cout << "Fetching batlvl: ";
m_batlvl = Lowbat::jo_exec("acpi | awk '{print $4}' | rev | cut -c 3- | rev");
m_batlvl.erase(remove(m_batlvl.begin(), m_batlvl.end(), '\n'), m_batlvl.end());
cout << m_batlvl << "%" << endl;
return stoi(m_batlvl);
}
int
Lowbat::jo_fetchAcstat(void) {
int ret;
cout << "Fetching acstat: ";
ret = system("acpi | grep -q Discharging");
if (ret != 0)
cout << "Charging" << endl;
else
cout << "Discharging" << endl;
return ret;
}
string
Lowbat::jo_exec(const char* cmd) {
array<char, 128> buffer;
string result;
unique_ptr<FILE, decltype(&pclose)> pipe(popen(cmd, "r"), pclose);
if (!pipe) {
throw runtime_error("popen() failed!");
}
while (fgets(buffer.data(), buffer.size(), pipe.get()) != nullptr) {
result += buffer.data();
}
return result;
}
int
Lowbat::jo_notify(void) {
string str;
str = "notify-send \"Low battery: ";
str += m_batlvl;
str += "%\" \"Please plug in computer\" -u critical -t 15000";
cout << "Notifying" << endl;
return system(str.c_str());
}
int
Lowbat::jo_speak(void) {
string str;
str = "echo \"";
str += m_msg;
str += "\" | espeak";
cout << "Speaking: " << m_msg << endl;
return system(str.c_str());
}
void
Lowbat::jo_setMsg(const char *msg) {
m_msg = msg;
}
|