20 lines
409 B
C
20 lines
409 B
C
|
#ifndef TSTATUS_BATTERY_H
|
||
|
|
||
|
#ifdef FISH
|
||
|
#define BATTERY_DIR "sbs-20-000b"
|
||
|
#elif TOASTER
|
||
|
#define BATTERY_DIR "BAT0"
|
||
|
#else
|
||
|
/* just assume we're running on fish */
|
||
|
#define BATTERY_DIR "sbs-20-000b"
|
||
|
#endif
|
||
|
|
||
|
#define BATTERY_PRE "/sys/class/power_supply/"
|
||
|
#define BATTERY_CAP "/capacity"
|
||
|
|
||
|
void populate_buffer(char *buffer, char pattern);
|
||
|
int battery_module(struct module *module);
|
||
|
|
||
|
#endif
|
||
|
#define TSTATUS_BATTERY_H
|