diff options
author | Anselm R Garbe <garbeam@gmail.com> | 2008-05-17 14:46:06 +0100 |
---|---|---|
committer | Anselm R Garbe <garbeam@gmail.com> | 2008-05-17 14:46:06 +0100 |
commit | bd67a82fb5a77638be365659a8b6aab4f3f5a35e (patch) | |
tree | 2a695696886a0258d53e44e4a904f219adad0114 /dwm.c | |
parent | 14d8d828abbb91db3305dfa666c8c70358d1d3c7 (diff) |
removed monocle for now
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -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); @@ -1013,15 +1012,6 @@ maprequest(XEvent *e) { } 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; |