removed monocle for now
authorAnselm R Garbe <garbeam@gmail.com>
Sat, 17 May 2008 14:46:06 +0100
changeset 1205 84f98bdf8fbe
parent 1204 6b7c8bbc4931
child 1206 2914cb30c2d4
removed monocle for now
config.def.h
dwm.1
dwm.c
--- a/config.def.h	Sat May 17 14:41:41 2008 +0100
+++ b/config.def.h	Sat May 17 14:46:06 2008 +0100
@@ -27,7 +27,6 @@
 	/* symbol     arrange  geom */
 	{ "[]=",      tile,    tilegeom }, /* first entry is default */
 	{ "><>",      NULL,             }, /* no layout function means floating behavior */
-	{ "<M>",      monocle, NULL     }, /* TODO: remove this */
 };
 
 /* key definitions */
--- a/dwm.1	Sat May 17 14:41:41 2008 +0100
+++ b/dwm.1	Sat May 17 14:46:06 2008 +0100
@@ -84,9 +84,6 @@
 .B Mod1\-Tab
 Toggles to the previously selected tags.
 .TP
-.B Mod1\-r
-Re-applies tagging rules to all windows.
-.TP
 .B Mod1\-Shift\-[1..n]
 Apply
 .RB nth
--- a/dwm.c	Sat May 17 14:41:41 2008 +0100
+++ b/dwm.c	Sat May 17 14:46:06 2008 +0100
@@ -151,7 +151,6 @@
 void manage(Window w, XWindowAttributes *wa);
 void mappingnotify(XEvent *e);
 void maprequest(XEvent *e);
-void monocle(void);
 void movemouse(Client *c);
 Client *nextunfloating(Client *c);
 void propertynotify(XEvent *e);
@@ -1013,15 +1012,6 @@
 }
 
 void
-monocle(void) {
-	Client *c;
-
-	for(c = clients; c; c = c->next)
-		if(!c->isfloating && isvisible(c))
-			resize(c, wx, wy, ww - 2 * c->bw, wh - 2 * c->bw, RESIZEHINTS);
-}
-
-void
 movemouse(Client *c) {
 	int x1, y1, ocx, ocy, di, nx, ny;
 	unsigned int dui;