applied Sanders max_and_focus.patch

This commit is contained in:
Anselm R. Garbe
2006-09-04 08:55:49 +02:00
parent 6d22782e8f
commit 26157e6973
5 changed files with 49 additions and 45 deletions

3
dwm.h
View File

@ -58,7 +58,6 @@ struct Client {
long flags;
unsigned int border, weight;
Bool isfloat;
Bool ismax;
Bool *tags;
Client *next;
Client *prev;
@ -73,7 +72,7 @@ extern unsigned int ntags, numlockmask;
extern void (*handler[LASTEvent])(XEvent *);
extern void (*arrange)(Arg *);
extern Atom wmatom[WMLast], netatom[NetLast];
extern Bool running, issel, *seltag;
extern Bool running, issel, maximized, *seltag;
extern Client *clients, *sel;
extern Cursor cursor[CurLast];
extern DC dc;