X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/5a3bea2d69c8ad864667de5142a9777aa41e1448..bab575c868bcd4206e4e530f339c1255a4adcd29:/view.c diff --git a/view.c b/view.c index 424ee5a..bb0647a 100644 --- a/view.c +++ b/view.c @@ -67,7 +67,9 @@ dofloat(Arg *arg) else ban(c); } - if((sel = getnext(clients))) + if(!sel || !isvisible(sel)) + sel = getnext(clients); + if(sel) focus(sel); else XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime); @@ -130,7 +132,9 @@ dotile(Arg *arg) else ban(c); } - if((sel = getnext(clients))) + if(!sel || !isvisible(sel)) + sel = getnext(clients); + if(sel) focus(sel); else XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime); @@ -269,6 +273,16 @@ view(Arg *arg) arrange(NULL); } +void +viewall(Arg *arg) +{ + unsigned int i; + + for(i = 0; i < ntags; i++) + seltag[i] = True; + arrange(NULL); +} + void zoom(Arg *arg) {