
12 Apr
2009
12 Apr
'09
1:40 p.m.
On Sun, Apr 12, 2009 at 12:15 PM, W. Kaplan
I am looking for a way to be able to stack some chat windows (Psi) on the side of my screen. The way I imagine it would make use a narrow column.
You can try the attached thing, It's not in contrib. Should work for you with something like this in you xmonad.hs
import XMonad.Layout.ComboP import XMonad.Util.WindowProperties
layoutHook = combineTwoP (dragPane Vertical 0.1 (1/6)) psiStack rest chatWindows where psiStack = Tall 0 (1/200) (1/2) -- however you want to stack your chat windows rest = Grid -- whatever you want on the rest of the screen chatWindows = (ClassName "psi") `And` (Not (Resource "main")) -- how to distinguish chat windows