suckless/dwm

assign selected tags of target monitor to client when tagmon is performed (less obtrusive imho) (e3f0445df1dcdd34189c9d48cbad67dd32764575)
Repositories | README | LICENSE

commit e3f0445df1dcdd34189c9d48cbad67dd32764575
parent ab06f7444bf558d4a58e6ca617b1b4f55c6b00c7
Author: Anselm R Garbe <[email protected]>
Date:   Thu, 25 Jun 2009 11:10:19 +0100

assign selected tags of target monitor to client when tagmon is performed (less obtrusive imho)
Diffstat:
Mdwm.c1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/dwm.c b/dwm.c @@ -1502,6 +1502,7 @@ tagmon(const Arg *arg) { detach(c); detachstack(c); c->mon = m; + c->tags = selmon->seltags; /* assign tags of target monitor */ attach(c); attachstack(c); m->sel = c;