|
|
|
@ -153,6 +153,7 @@ static int applysizehints(Client *c, int *x, int *y, int *w, int *h, int interac |
|
|
|
|
static void arrange(Monitor *m); |
|
|
|
|
static void arrangemon(Monitor *m); |
|
|
|
|
static void attach(Client *c); |
|
|
|
|
static void attachbottom(Client *c); |
|
|
|
|
static void attachstack(Client *c); |
|
|
|
|
static void buttonpress(XEvent *e); |
|
|
|
|
static void checkotherwm(void); |
|
|
|
@ -413,6 +414,18 @@ attach(Client *c) |
|
|
|
|
c->mon->clients = c; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void |
|
|
|
|
attachbottom(Client *c) |
|
|
|
|
{ |
|
|
|
|
Client *below = c->mon->clients; |
|
|
|
|
for (; below && below->next; below = below->next); |
|
|
|
|
c->next = NULL; |
|
|
|
|
if (below) |
|
|
|
|
below->next = c; |
|
|
|
|
else |
|
|
|
|
c->mon->clients = c; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void |
|
|
|
|
attachstack(Client *c) |
|
|
|
|
{ |
|
|
|
@ -1131,7 +1144,7 @@ manage(Window w, XWindowAttributes *wa) |
|
|
|
|
c->isfloating = c->oldstate = trans != None || c->isfixed; |
|
|
|
|
if (c->isfloating) |
|
|
|
|
XRaiseWindow(dpy, c->win); |
|
|
|
|
attach(c); |
|
|
|
|
attachbottom(c); |
|
|
|
|
attachstack(c); |
|
|
|
|
XChangeProperty(dpy, root, netatom[NetClientList], XA_WINDOW, 32, PropModeAppend, |
|
|
|
|
(unsigned char *) &(c->win), 1); |
|
|
|
@ -1486,7 +1499,7 @@ sendmon(Client *c, Monitor *m) |
|
|
|
|
detachstack(c); |
|
|
|
|
c->mon = m; |
|
|
|
|
c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */ |
|
|
|
|
attach(c); |
|
|
|
|
attachbottom(c); |
|
|
|
|
attachstack(c); |
|
|
|
|
focus(NULL); |
|
|
|
|
arrange(NULL); |
|
|
|
@ -1965,7 +1978,7 @@ updategeom(void) |
|
|
|
|
m->clients = c->next; |
|
|
|
|
detachstack(c); |
|
|
|
|
c->mon = mons; |
|
|
|
|
attach(c); |
|
|
|
|
attachbottom(c); |
|
|
|
|
attachstack(c); |
|
|
|
|
} |
|
|
|
|
if (m == selmon) |
|
|
|
|