Tuesday, July 12, 2011

TWM: Docking Windows

Using Pharo 1.4 and latest TWM packages, you can now group windows as tabs.

Use:
(ConfigurationOfTilingWindowManager project 
    version: #bleedingEdge) load



2 comments:

  1. Just tried this out- pretty damned awesome! Any plans to modify window management to tile newly opened windows, or re-tile when a window is closed?

    Thanks!

    ReplyDelete
  2. Evaluate this in workspace:

    {WindowOpened. WindowClosed} do: [:annClass|
    TWMBar default windowManager world announcer
    on: annClass
    do: [:ann| TWMBar default windowManager tileLastUsedWindows].
    ]


    and enjoy :)

    ReplyDelete