tstatus/tstatus.c

14 lines
204 B
C
Raw Normal View History

#include "bspwm.c"
2022-09-20 16:29:25 -05:00
#include "module.h"
struct module table[] = {
{0, 10, bspwm_update, {'\0'}},
};
int main(void) {
table[0].updatecallback(&table[0]);
printf("%s\n", table[0].buffer);
return 0;
}