blob: c30712c8d5b84d7726e30f06d7a999cb19c3815e (
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
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define STRLEN_CAPACITY 4
#define STRLEN_STATUS 16
#define COLOR_FULL "#839496"
#define COLOR_LOW "#b58900"
#define COLOR_CRITICAL "#dc322f"
void dump_file(const char *path, size_t size, char *out) {
FILE *file = fopen(path, "r");
fgets(out, size, file);
fclose(file);
}
int main() {
char capacity[STRLEN_CAPACITY];
char status[STRLEN_STATUS];
for (;;) {
dump_file("/sys/class/power_supply/BAT0/capacity", STRLEN_CAPACITY, capacity);
dump_file("/sys/class/power_supply/BAT0/status", STRLEN_STATUS, status);
// select color based on charge level
int capacity_int = atoi(capacity);
const char *color = NULL;
if (capacity_int <= 10) {
color = COLOR_CRITICAL;
} else if (capacity_int <= 20) {
color = COLOR_LOW;
} else {
color = COLOR_FULL;
}
// select icon based on whether AC is plugged in
const char *icon = NULL;
if (strstr(status, "Discharging")) {
icon = "f0079";
} else {
icon = "f06a5";
}
printf("<span color=\"%s\"><span font=\"Symbols Nerd Font\">&#x%s;</span> %d%</span>\n", color, icon, capacity_int);
fflush(stdout);
sleep(1);
}
return 0;
}
|