X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/d7734f996ff2eae29fea14af76711d7f51648c10..0c5f47e720d2c1fa5b3f2672ec03d0f267e62c90:/dwm.h?ds=inline diff --git a/dwm.h b/dwm.h index 7cf168d..f9c4094 100644 --- a/dwm.h +++ b/dwm.h @@ -83,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; @@ -161,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 */