Hi

It's a suggestion to create a "float next windows" feature.

I also learn that in 5.0 maybe the toggle-float will restore the window
dimension, so maybe this feature is not needed.

Thanks

----------------------------



% diff config.def.h config.h
42a46,53
> /* my hack for floater */
> Bool td_floater (Bool set_flag) {
>     static Bool float_flag = False;
>     Bool f = float_flag;
>     float_flag = set_flag;
>     return f;
> }
>
....
>     { MODKEY,            XK_f,        td_floater,    True },
....





% diff dwm.c.orig dwm.c
1034c1034
<         c->isfloating = (rettrans == Success) || c->isfixed;
---
>         c->isfloating = td_floater(False) || (rettrans == Success) ||
c->isfixed; /* td floater hack */

Reply via email to