aboutsummaryrefslogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe <anselm@garbe.us>2009-06-23 17:34:20 +0100
committerAnselm R Garbe <anselm@garbe.us>2009-06-23 17:34:20 +0100
commit54dc0d542cbc8eada2250fe80d161a272f30ddac (patch)
tree14106e73f128f403ef2a6ca56468b1c69a81399e /dwm.c
parent913333f51840d942bdde891eb2fb3c7f66b83db1 (diff)
downloaddwm-54dc0d542cbc8eada2250fe80d161a272f30ddac.tar.gz
fixed tagmon, re-using detach/detachstack and attach/attachstack
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c23
1 files changed, 16 insertions, 7 deletions
diff --git a/dwm.c b/dwm.c
index 5625237..4ff4f9d 100644
--- a/dwm.c
+++ b/dwm.c
@@ -375,14 +375,14 @@ arrange(void) {
void
attach(Client *c) {
- c->next = selmon->clients;
- selmon->clients = c;
+ c->next = c->mon->clients;
+ c->mon->clients = c;
}
void
attachstack(Client *c) {
- c->snext = selmon->stack;
- selmon->stack = c;
+ c->snext = c->mon->stack;
+ c->mon->stack = c;
}
void
@@ -1475,11 +1475,20 @@ tag(const Arg *arg) {
void
tagmon(const Arg *arg) {
unsigned int i;
+ Client *c;
Monitor *m;
+ if(!(c = selmon->sel))
+ return;
for(i = 0, m = mons; m; m = m->next, i++)
if(i == arg->ui) {
- selmon->sel->m = m;
+ detach(c);
+ detachstack(c);
+ c->mon = m;
+ attach(c);
+ attachstack(c);
+ selmon->sel = selmon->stack;
+ m->sel = c;
arrange();
break;
}
@@ -1695,7 +1704,7 @@ updategeom(void) {
for(tm = mons; tm; tm = tm->next)
if(tm->screen_number == m->screen_number) {
m->clients = tm->clients;
- m->stack = tm->stack;
+ m->sel = m->stack = tm->stack;
tm->clients = NULL;
tm->stack = NULL;
for(c = m->clients; c; c = c->next)
@@ -1715,7 +1724,7 @@ updategeom(void) {
while(tm->stack) {
c = tm->stack->snext;
tm->stack->snext = newmons->stack;
- newmons->stack = tm->stack;
+ newmons->sel = newmons->stack = tm->stack;
tm->stack = c;
}
}
remember that computers suck.