X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=dwm.h;h=a7053c56ad0ddfac05b2e480866298f0c6baf5df;hb=2ddc78720aceda76e22fd3584740fc86a2e7c677;hp=72fcacfdf848044e0e5340b8374bb95d6d77f00f;hpb=71b84c21149adb7adff6140a1f471c4a294edd4b;p=dwm.git diff --git a/dwm.h b/dwm.h index 72fcacf..a7053c5 100644 --- a/dwm.h +++ b/dwm.h @@ -40,7 +40,7 @@ #define PROTODELWIN 1 enum { NetSupported, NetWMName, NetLast }; /* EWMH atoms */ -enum { WMProtocols, WMDelete, WMLast }; /* default atoms */ +enum { WMProtocols, WMDelete, WMState, WMLast }; /* default atoms */ enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */ enum { ColBorder, ColFG, ColBG, ColLast }; /* color */ @@ -73,6 +73,7 @@ struct Client { int x, y, w, h; int rx, ry, rw, rh; /* revert geometry */ int basew, baseh, incw, inch, maxw, maxh, minw, minh; + int minax, minay, maxax, maxay; long flags; unsigned int border; Bool isfloat, isfixed, ismax; @@ -93,7 +94,7 @@ extern unsigned int ntags, numlockmask; /* number of tags, dynamic lock mask */ extern void (*handler[LASTEvent])(XEvent *); /* event handler */ extern void (*arrange)(void); /* arrange function, indicates mode */ extern Atom wmatom[WMLast], netatom[NetLast]; -extern Bool activescreen, running, *seltag; /* seltag is array of Bool */ +extern Bool running, selscreen, *seltag; /* seltag is array of Bool */ extern Client *clients, *sel, *stack; /* global client list and stack */ extern Cursor cursor[CurLast]; extern DC dc; /* global draw context */