diff --git a/README.md b/README.md index 20cc4a7..a0a90bb 100644 --- a/README.md +++ b/README.md @@ -545,7 +545,7 @@ Refer to [https://dwm.suckless.org/](https://dwm.suckless.org/) for details on t - [fibonacci](https://dwm.suckless.org/patches/fibonacci/) - fibonacci (dwindle and spiral) layouts - - [flextile-deluxe](https://github.com/bakkeby/patches/blob/master/dwm/dwm-pertag-flextile_deluxe-6.2.diff) + - [flextile-deluxe](https://github.com/bakkeby/patches/wiki/flextile-deluxe/) - a re-envisioned, flexible and over-the-top version of the original [flextile](https://dwm.suckless.org/patches/flextile/) patch supporting - multiple split layouts (horizontal, vertical, centered, floating, fixed) - tile arrangement on a per split basis (stack horizontally, stack vertically, grids, fibonacci) diff --git a/patch/layout_flextile-deluxe.c b/patch/layout_flextile-deluxe.c index a877c92..d289241 100644 --- a/patch/layout_flextile-deluxe.c +++ b/patch/layout_flextile-deluxe.c @@ -73,7 +73,7 @@ setlayoutaxisex(const Arg *arg) int axis, arr; axis = arg->i & 0x3; // lower two bytes indicates layout, master or stack1-2 - arr = ((arg->i & 0xFC) >> 2); // remaining six upper bytes indicates arrangement + arr = ((arg->i & 0xFC) >> 2); // remaining six upper bytes indicate arrangement if ((axis == 0 && abs(arr) > LAYOUT_LAST) || (axis > 0 && (arr > AXIS_LAST || arr < 0)))