Winwatch never was any happy with showing 0 windows. (division by zero error) Sorry about that. Reference: /n/sources/patch/applied/winwatch-zerowin Date: Tue Apr 12 10:18:55 CES 2005 --- /sys/src/cmd/winwatch.c Tue Apr 12 10:16:08 2005 +++ /sys/src/cmd/winwatch.c Tue Apr 12 10:16:05 2005 @@ -150,7 +150,7 @@ z = 0; rows = (Dy(screen->r)-2*MARGIN+PAD)/(font->height+PAD); if(rows*cols < nwin || rows*cols >= nwin*2){ - ncols = (nwin+rows-1)/rows; + ncols = nwin <= 0 ? 1 : (nwin+rows-1)/rows; if(ncols != cols){ cols = ncols; z = 1;