> On Fri, Nov 21, 2003 at 03:46:23AM +0100, Thorben Thuermer wrote: > > How did you open these floating windows on top of the regular > ion banana split? I've been trying to achieve that for quite some time but > failed due to the total lack of documentation. :-( > > Or ist that screenshot just showing a maximized window containing tabs on a > FloatWS? > > m >
in ioncore-bindings.lua you'll see (or should) scr:attach_new([ type=default_ws_type, switchto=true ]) If you grep for 'default_ws_type' you'll find (in ioncorelib.lua): default_ws_type="WIonWS" You can make a new keybinding that uses type="WFloatWS" in the scr:attach_new() function instead and it will let you attach a new floating workspace inside any frame (including a WIonFrame). This feature of ion-devel is more implied than explicitly documented, and took me a while scouring through the default config files to figure it out. Anyhoo, Hope this helps :) -Jordan
