2008/2/14, Jacek Hoffman <[EMAIL PROTECTED]>: > My question: > is it possible to force some applications (or all of them) in tiling mode > to open their windows only in the left hand side (main window) even when > no other window is open? > Sometimes I have to use some placeholder (browser new window, empty xterm > or Mod+0) >
Sure, it is very easy. In the tile function (dwm.c:1727) you have: mw = (n == 1) ? m->waw : m->mwfact * m->waw; and you want: mw = m->mwfact * m->waw; I think that's all, but I haven't tested it. hth, -- - yiyus || JGL .
