On Tue, 20 Jul 2004 10:39:55 +0100
Giles Constant <[EMAIL PROTECTED]> wrote:

> Hiya,
> 
> I've made the switch to ION3, and it's got all these great new features which 
> I don't know how to use!

most of them where in ion2 already... (the screenshot is ion2)

> Specifically, I'm trying to make a tab-less omnipresent frame at the bottom 
> for a status bar app (I'm actually using superkaramba.. don't laugh :-)), and 
> the dock on the left of this screenshot seems to be similar to what I'm 
> trying to achieve..
> 
> http://ion.pimb.org/r00t2.jpeg

the "dock" there is simply a frame with a lot of horizontal splits and all tabs off.

_:toggle_tab()  or:
defbindings("WFrame", {
    kpress(MOD1.."H", WFrame.toggle_tab),

ion ion3 you could just attach a dock (that finally exists) into a frame
(if you don't want to ever hide it anyway)

_:attach_new({type="WDock",name="dock",grow="right"})

or you do it the intented way and stick the dock into a omnipresent,
toggle-able 'stdisp' (a actual ion3 feature):
(quoting tuomov's original announcement):
_:screen_of():set_stdisp{type="WDock", corner="bl",orientation="horizontal"}


> Also, how do you make a workspace within a workspace?

_:attach_new({name="foo", type="WIonWS"})

> Giles

- Thorben

Reply via email to