# HG changeset patch # User Anselm R Garbe # Date 1211031966 -3600 # Node ID 84f98bdf8fbe92d98f4185246e472a5585083641 # Parent 6b7c8bbc49319cb20b22d1f3e8876ca304b42465 removed monocle for now diff -r 6b7c8bbc4931 -r 84f98bdf8fbe config.def.h --- 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 */ - { "", monocle, NULL }, /* TODO: remove this */ }; /* key definitions */ diff -r 6b7c8bbc4931 -r 84f98bdf8fbe dwm.1 --- 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 diff -r 6b7c8bbc4931 -r 84f98bdf8fbe dwm.c --- 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;