removed monocle for now
Anselm R Garbe garbeam@gmail.com
Sat, 17 May 2008 14:46:06 +0100
3 files changed,
0 insertions(+),
14 deletions(-)
M
config.def.h
→
config.def.h
@@ -27,7 +27,6 @@ Layout layouts[] = {
/* symbol arrange geom */ { "[]=", tile, tilegeom }, /* first entry is default */ { "><>", NULL, }, /* no layout function means floating behavior */ - { "<M>", monocle, NULL }, /* TODO: remove this */ }; /* key definitions */
M
dwm.c
→
dwm.c
@@ -151,7 +151,6 @@ void killclient(const char *arg);
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);@@ -1010,15 +1009,6 @@ if(wa.override_redirect)
return; if(!getclient(ev->window)) manage(ev->window, &wa); -} - -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