Adding link to flextile-deluxe wiki page

This commit is contained in:
bakkeby 2020-07-23 19:41:18 +02:00
parent 0f74a8ff03
commit 56ad78e7d2
2 changed files with 2 additions and 2 deletions

View File

@ -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](https://dwm.suckless.org/patches/fibonacci/)
- fibonacci (dwindle and spiral) layouts - 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 - 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) - multiple split layouts (horizontal, vertical, centered, floating, fixed)
- tile arrangement on a per split basis (stack horizontally, stack vertically, grids, fibonacci) - tile arrangement on a per split basis (stack horizontally, stack vertically, grids, fibonacci)

View File

@ -73,7 +73,7 @@ setlayoutaxisex(const Arg *arg)
int axis, arr; int axis, arr;
axis = arg->i & 0x3; // lower two bytes indicates layout, master or stack1-2 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) if ((axis == 0 && abs(arr) > LAYOUT_LAST)
|| (axis > 0 && (arr > AXIS_LAST || arr < 0))) || (axis > 0 && (arr > AXIS_LAST || arr < 0)))