X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=dwm.c;h=b7e937dc3ff04cb7eaabcba97715da5bcacfef09;hb=7f7c3140a9c0841e34fd8689dc5d46627c949147;hp=d4ce1e4fb974f6df6257f256dc913e83c794230e;hpb=deef4c9bfd7d88937822b689946bd65df7fc618d;p=dwm.git diff --git a/dwm.c b/dwm.c index d4ce1e4..b7e937d 100644 --- a/dwm.c +++ b/dwm.c @@ -929,7 +929,7 @@ manage(Window w, XWindowAttributes *wa) { XRaiseWindow(dpy, c->win); attach(c); attachstack(c); - XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h); /* some windows require this */ + XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */ XMapWindow(dpy, c->win); setclientstate(c, NormalState); arrange(); @@ -962,7 +962,7 @@ monocle(void) { Client *c; for(c = nexttiled(clients); c; c = nexttiled(c->next)) - resize(c, wx, wy, ww, wh, resizehints); + resize(c, wx, wy, ww - 2 * c->bw, wh - 2 * c->bw, resizehints); } void