what's the sense of line 2037 in dwm.c (tip) 2032 void 2033 zoom(const Arg *arg) { 2034 Client *c = selmon->sel; 2035 2036 if(!selmon->lt[selmon->sellt]->arrange 2037 || selmon->lt[selmon->sellt]->arrange == monocle 2038 || (selmon->sel && selmon->sel->isfloating)) 2039 return; 2040 if(c == nexttiled(selmon->clients)) 2041 if(!c || !(c = nexttiled(c->next))) 2042 return; 2043 pop(c); 2044 }
i don't like that line so far ... if i am in monocle layout i am often on a small screen too small for tiling so i might want to see my windows as a stack ?