aboutsummaryrefslogtreecommitdiff
path: root/dwm.h
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-13 18:21:38 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-13 18:21:38 +0200
commitefa7e514012865fcb3e9ea6e7d5b5c87d84353e5 (patch)
tree0de62a03a41d3c374abaad67146b9caf3c854615 /dwm.h
parentc47da143bdf5b4e3924a411f42648d4b3e86ff00 (diff)
several other additions/fixes, dwm is quite usable already
Diffstat (limited to 'dwm.h')
-rw-r--r--dwm.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/dwm.h b/dwm.h
index cf51c36..49aa126 100644
--- a/dwm.h
+++ b/dwm.h
@@ -68,7 +68,7 @@ struct Client {
Window trans;
Window title;
Client *next;
- Client *prev;
+ Client *revert;
};
struct Key {
@@ -89,7 +89,7 @@ extern int tsel, screen, sx, sy, sw, sh, th;
extern char stext[1024], *tags[TLast];
extern DC dc;
-extern Client *cstart, *cend, *csel;
+extern Client *clients, *sel;
/* client.c */
extern void manage(Window w, XWindowAttributes *wa);
@@ -109,7 +109,9 @@ extern void prevc(Arg *arg);
extern void max(Arg *arg);
extern void floating(Arg *arg);
extern void tiling(Arg *arg);
-void tag(Arg *arg);
+extern void tag(Arg *arg);
+extern void view(Arg *arg);
+extern void zoom(Arg *arg);
extern void gravitate(Client *c, Bool invert);
/* draw.c */