X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=dwm.h;h=f9c409478ddab99b2672c4d9c12ecb7768cfe1cc;hb=f320cd203b13b277a33c76191db5626fa342b646;hp=da105b7afa7e51f2849106c510f774a4057fd731;hpb=5983c00b9508d48331b2c57f2c88ea09a8feb291;p=dwm.git diff --git a/dwm.h b/dwm.h index da105b7..f9c4094 100644 --- a/dwm.h +++ b/dwm.h @@ -36,7 +36,6 @@ /* mask shorthands, used in event.c and client.c */ #define BUTTONMASK (ButtonPressMask | ButtonReleaseMask) -#define MOUSEMASK (BUTTONMASK | PointerMotionMask) /* other stuff used in different places */ #define BORDERPX 1 #define PROTODELWIN 1 @@ -84,7 +83,7 @@ struct Client { int grav; long flags; unsigned int border, weight; - Bool isfloat, ismax; + Bool isfloat, isfixed, ismax; Bool *tags; Client *next; Client *prev; @@ -162,7 +161,7 @@ extern void dotile(void); /* arranges all windows tiled */ extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored */ extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */ extern Bool isvisible(Client *c); /* returns True if client is visible */ -extern void resizecol(Arg *arg); /* resizes the master percent with arg's index value */ +extern void resizemaster(Arg *arg); /* resizes the master percent with arg's index value */ extern void restack(void); /* restores z layers of all clients */ extern void togglemode(Arg *arg); /* toggles global arrange function (dotile/dofloat) */ extern void toggleview(Arg *arg); /* toggles the tag with arg's index (in)visible */