1
0
mirror of git://git.suckless.org/dwm synced 2025-07-31 20:22:11 -07:00

added max

This commit is contained in:
Anselm R. Garbe
2006-07-12 16:40:37 +02:00
parent 4641aa2925
commit 6db5ffb6c9
3 changed files with 15 additions and 3 deletions

View File

@@ -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)
{