aboutsummaryrefslogtreecommitdiffstats
path: root/dwm.h
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-09-04 08:55:49 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-09-04 08:55:49 +0200
commit26157e6973f240a9b5ee407b9d2d5eca9358844f (patch)
tree540e8c0d6b646782dc0a9fde26c3af6109103241 /dwm.h
parent6d22782e8f991a99f9adef56b2b729e5ab5454d2 (diff)
downloaddwm-26157e6973f240a9b5ee407b9d2d5eca9358844f.tar.zst
applied Sanders max_and_focus.patch
Diffstat (limited to 'dwm.h')
-rw-r--r--dwm.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/dwm.h b/dwm.h
index d8ce212..e1df6bc 100644
--- a/dwm.h
+++ b/dwm.h
@@ -58,7 +58,6 @@ struct Client {
long flags;
unsigned int border, weight;
Bool isfloat;
- Bool ismax;
Bool *tags;
Client *next;
Client *prev;
@@ -73,7 +72,7 @@ extern unsigned int ntags, numlockmask;
extern void (*handler[LASTEvent])(XEvent *);
extern void (*arrange)(Arg *);
extern Atom wmatom[WMLast], netatom[NetLast];
-extern Bool running, issel, *seltag;
+extern Bool running, issel, maximized, *seltag;
extern Client *clients, *sel;
extern Cursor cursor[CurLast];
extern DC dc;