X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/4641aa2925731ac180b08c80f57db176391ea4a9..6db5ffb6c9a9c0db5c425c64a96a3896a682c95e:/client.c diff --git a/client.c b/client.c index b961d86..537336c 100644 --- a/client.c +++ b/client.c @@ -11,6 +11,18 @@ #include "util.h" #include "wm.h" +void +max(void *aux) +{ + if(!stack) + return; + stack->x = sx; + stack->y = bh; + stack->w = sw - 2; + stack->h = sh - bh - 2; + resize(stack); +} + void arrange(void *aux) {