comparison dwm.h @ 688:39fa5308d73f

removed mode label stuff
author Anselm R. Garbe <arg@suckless.org>
date Sun, 14 Jan 2007 22:32:26 +0100
parents a76799907854
children cbec08a54a15
comparison
equal deleted inserted replaced
687:a76799907854 688:39fa5308d73f
88 Client *snext; 88 Client *snext;
89 Window win; 89 Window win;
90 }; 90 };
91 91
92 extern const char *tags[]; /* all tags */ 92 extern const char *tags[]; /* all tags */
93 extern char stext[1024]; /* status text */ 93 extern char stext[256]; /* status text */
94 extern char mtext[32]; /* mode text */
95 extern int bx, by, bw, bh, bmw; /* bar geometry, bar mode label width */ 94 extern int bx, by, bw, bh, bmw; /* bar geometry, bar mode label width */
96 extern int screen, sx, sy, sw, sh; /* screen geometry */ 95 extern int screen, sx, sy, sw, sh; /* screen geometry */
97 extern int wax, way, wah, waw; /* windowarea geometry */ 96 extern int wax, way, wah, waw; /* windowarea geometry */
98 extern unsigned int master, nmaster; /* master percent, number of master clients */ 97 extern unsigned int master, nmaster; /* master percent, number of master clients */
99 extern unsigned int ntags, numlockmask; /* number of tags, dynamic lock mask */ 98 extern unsigned int ntags, numlockmask; /* number of tags, dynamic lock mask */
161 extern void resizemaster(Arg *arg); /* resizes the master percent with arg's index value */ 160 extern void resizemaster(Arg *arg); /* resizes the master percent with arg's index value */
162 extern void restack(void); /* restores z layers of all clients */ 161 extern void restack(void); /* restores z layers of all clients */
163 extern void togglefloat(Arg *arg); /* toggles focusesd client between floating/non-floating state */ 162 extern void togglefloat(Arg *arg); /* toggles focusesd client between floating/non-floating state */
164 extern void togglemode(Arg *arg); /* toggles global arrange function (dotile/dofloat) */ 163 extern void togglemode(Arg *arg); /* toggles global arrange function (dotile/dofloat) */
165 extern void toggleview(Arg *arg); /* toggles the tag with arg's index (in)visible */ 164 extern void toggleview(Arg *arg); /* toggles the tag with arg's index (in)visible */
166 extern void updatemodetext(void); /* updates mtext */
167 extern void view(Arg *arg); /* views the tag with arg's index */ 165 extern void view(Arg *arg); /* views the tag with arg's index */
168 extern void zoom(Arg *arg); /* zooms the focused client to master area, arg is ignored */ 166 extern void zoom(Arg *arg); /* zooms the focused client to master area, arg is ignored */