On Thu, 31 Jul 2003, Michael Denio wrote:
> Forgive me if this is a stupid question, but how does one go about
> getting a floating workspace created.  I can split a full screen frame
> into tiles and create multiple workspaces that I can switch to with
> Mod1+1, Mod1+2, etc.  Are those what are meant by floating?

Floating means the frames are free-floating and not tiled, ala PWM. I
don't know what keybinding creates a floating workspace by default. I just
do this:

global_bindings{
        kpress(DEFAULT_MOD.."grave", function (s) new_workspace(s, "WIonWS") end),
        kpress(SECOND_MOD.."grave", function (s) new_workspace(s, "WFloatWS") end),
        ...

So by default it creates a regular tiled workspace, but if I do second_mod
it makes a floating one instead.

Reply via email to