Initial DWM config

This commit is contained in:
2024-06-02 19:39:49 +01:00
parent 6072451f8f
commit 91637d8cc8
89 changed files with 15083 additions and 8 deletions

9
suckless/dmenu/util.h Normal file
View File

@@ -0,0 +1,9 @@
/* See LICENSE file for copyright and license details. */
#define MAX(A, B) ((A) > (B) ? (A) : (B))
#define MIN(A, B) ((A) < (B) ? (A) : (B))
#define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B))
#define LENGTH(X) (sizeof (X) / sizeof (X)[0])
void die(const char *fmt, ...);
void *ecalloc(size_t nmemb, size_t size);