aboutsummaryrefslogtreecommitdiff
path: root/modules.h
blob: c7c66bf6d08aca41ed1c31950ca3a876121cdd16 (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
// datetime
#ifndef DATETIME_H
#define DATETIME_H
void datetime(void);
#endif
// battery
#ifndef BATTERY_H
#define BATTERY_H
void battery(void);
#endif
// cpu
#ifndef CPU_H
#define CPU_H
void cpu(void);
#endif
// mem
#ifndef MEM_H
#define MEM_H
void mem(void);
#endif
// screen brightness
#ifndef SCRBR_H
#define SCRBR_H
void scrbr(void);
#endif
// cmus
#ifndef CMUS_H
#define CMUS_H
void cmus(void);
#endif