c00kiemon5ter / monsterwm

tiny but monstrous tiling window manager
https://github.com/c00kiemon5ter/monsterwm
Other
335 stars 44 forks source link

Keybind to put floating window in tile mode (maximize window) #29

Open ehen opened 10 years ago

ehen commented 10 years ago

If I drag or resize a window and wants it to go back to full-size, it'd be cool to have a keybind for that.

ehen commented 10 years ago

From FrankenWM:

/* reset the active window from floating to tiling, if not already */
void tilemize()
{
    if (!current->isfloating)
        return;
    current->isfloating = false;
    update_current(current);
}