aewl
diff dwm.h @ 50:148f25ed0ad7
several other additions/fixes, dwm is quite usable already
author | Anselm R. Garbe <garbeam@wmii.de> |
---|---|
date | Thu, 13 Jul 2006 18:21:38 +0200 |
parents | 466591c2f967 |
children | 035617ee18d1 |
line diff
1.1 --- a/dwm.h Thu Jul 13 17:09:35 2006 +0200 1.2 +++ b/dwm.h Thu Jul 13 18:21:38 2006 +0200 1.3 @@ -68,7 +68,7 @@ 1.4 Window trans; 1.5 Window title; 1.6 Client *next; 1.7 - Client *prev; 1.8 + Client *revert; 1.9 }; 1.10 1.11 struct Key { 1.12 @@ -89,7 +89,7 @@ 1.13 extern char stext[1024], *tags[TLast]; 1.14 1.15 extern DC dc; 1.16 -extern Client *cstart, *cend, *csel; 1.17 +extern Client *clients, *sel; 1.18 1.19 /* client.c */ 1.20 extern void manage(Window w, XWindowAttributes *wa); 1.21 @@ -109,7 +109,9 @@ 1.22 extern void max(Arg *arg); 1.23 extern void floating(Arg *arg); 1.24 extern void tiling(Arg *arg); 1.25 -void tag(Arg *arg); 1.26 +extern void tag(Arg *arg); 1.27 +extern void view(Arg *arg); 1.28 +extern void zoom(Arg *arg); 1.29 extern void gravitate(Client *c, Bool invert); 1.30 1.31 /* draw.c */