Hello, There is a bug in the last version of dwm (verified on 5.8, 5.8.2 and r1549) regarding the bar width. By reading the BUGS file, I can see that it may be similar to the bug reported by "voltaic". In my case, it appears whenever I change the orientation (rotation of the monitor). For example:
$ xrandr --output LVDS1 --rotate left $ sleep 2 $ xrandr --output LVDS1 --rotate normal The bar is like cut off. I can't see the text in my statusbar. By verifing the code, I saw that "dc.drawable" is not updated correctly when these rotations happen. So, when changing from 600x800 to 800x600, the dc.drawable keeps the dimension of 600x16 (instead of the necessary 800x16). Attached goes a patch (against revision 1549) that resolves a status bar width problem. It's a quick fix and perhaps the changes I've made should be relocated inside updategeom() function. Maybe this also resolves the issue reported by voltaic. Regards, Rudy
diff -r d7ffa0c01b44 -r e03349ad91a7 dwm.c --- a/dwm.c Sat Jun 11 08:33:20 2011 +0100 +++ b/dwm.c Mon Jun 13 05:27:05 2011 -0400 @@ -585,11 +585,13 @@ configurenotify(XEvent *e) { Monitor *m; XConfigureEvent *ev = &e->xconfigure; + Bool dirty; if(ev->window == root) { + dirty = (sw != ev->width); sw = ev->width; sh = ev->height; - if(updategeom()) { + if(updategeom() || dirty) { if(dc.drawable != 0) XFreePixmap(dpy, dc.drawable); dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen));