Browse Source

made bar based monitor switching working

config
Anselm R Garbe 15 years ago
parent
commit
e8aafb8e91
1 changed files with 4 additions and 6 deletions
  1. +4
    -6
      dwm.c

+ 4
- 6
dwm.c View File

@ -400,12 +400,9 @@ buttonpress(XEvent *e) {
for(m = mons; m; m = m->next) for(m = mons; m; m = m->next)
if(ev->window == m->barwin) { if(ev->window == m->barwin) {
if(m != selmon) { if(m != selmon) {
if(selmon->stack)
focus(selmon->stack);
else {
selmon = m;
focus(NULL);
}
unfocus(selmon->stack);
selmon = m;
focus(NULL);
} }
break; break;
} }
@ -1608,6 +1605,7 @@ unfocus(Client *c) {
return; return;
grabbuttons(c, False); grabbuttons(c, False);
XSetWindowBorder(dpy, c->win, dc.norm[ColBorder]); XSetWindowBorder(dpy, c->win, dc.norm[ColBorder]);
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
} }
void void


Loading…
Cancel
Save