|
@ -151,7 +151,6 @@ void killclient(const char *arg); |
|
|
void manage(Window w, XWindowAttributes *wa); |
|
|
void manage(Window w, XWindowAttributes *wa); |
|
|
void mappingnotify(XEvent *e); |
|
|
void mappingnotify(XEvent *e); |
|
|
void maprequest(XEvent *e); |
|
|
void maprequest(XEvent *e); |
|
|
void monocle(void); |
|
|
|
|
|
void movemouse(Client *c); |
|
|
void movemouse(Client *c); |
|
|
Client *nextunfloating(Client *c); |
|
|
Client *nextunfloating(Client *c); |
|
|
void propertynotify(XEvent *e); |
|
|
void propertynotify(XEvent *e); |
|
@ -1012,15 +1011,6 @@ maprequest(XEvent *e) { |
|
|
manage(ev->window, &wa); |
|
|
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 |
|
|
void |
|
|
movemouse(Client *c) { |
|
|
movemouse(Client *c) { |
|
|
int x1, y1, ocx, ocy, di, nx, ny; |
|
|
int x1, y1, ocx, ocy, di, nx, ny; |
|
|