Hi,

as awesome is basically a tiling window manager I would expect its
default mode to remain "tile".

As a middle of the road solution I think that at least it should be easy for
someone to change the default behavior in the default rc.lua file. For example,
a snippet like the one below placed in the default rc.lua (proposed in IRC)
should make it easy for people unfamiliar with the awesome API to choose their
default layout.

-- Layout to use by default in all tags
default_layout = awful.layout.suit.floating
  
-- {{{ Tags
-- Define tags table.
tags = {}
for s = 1, screen.count() do
    -- Each screen has its own tag table.
    tags[s] = awful.tag({ 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s, default_layout)
end
-- }}}

Regards,
Alexandros



-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to