dwmblocks/include/main.h

17 lines
289 B
C
Raw Normal View History

#ifndef MAIN_H
#define MAIN_H
#include <signal.h>
#include "config.h"
#include "util.h"
2023-10-25 16:30:08 +02:00
#define REFRESH_SIGNAL SIGUSR1
// Utilise C's adjacent string concatenation to count the number of blocks.
#define X(...) "."
2023-10-25 16:30:08 +02:00
enum { BLOCK_COUNT = LEN(BLOCKS(X)) - 1 };
#undef X
#endif // MAIN_H