On 6/22/08, Arun G Nair <[EMAIL PROTECTED]> wrote: > So to summarize, when you alt+space when in tile mode it goes to the > last floating mode (monocle or float) used. Is it the intended > behavior ?
mod + space is setlayout(0) in config.def.h which seems to toggle the
last bit of the selected layout index:
setlayout(const Arg *arg) {
if(!arg || !arg->v || arg->v != lt[sellt])
sellt ^= 1;
i don't quite understand the intention behind this though..
