qtile gives me more than dwm. I will try to live with it's quirks.

This commit is contained in:
Bartek Stalewski 2022-08-23 00:15:20 +02:00
parent 35ccb08948
commit 75517d5ad3
35 changed files with 9 additions and 9 deletions

8
_unused/dwm/util.h Normal file
View file

@ -0,0 +1,8 @@
/* 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))
void die(const char *fmt, ...);
void *ecalloc(size_t nmemb, size_t size);