diff options
| author | bakkeby <[email protected]> | 2020-07-23 19:41:18 +0200 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2020-07-23 19:41:18 +0200 |
| commit | 56ad78e7d29df3854b79ffdbef15681d70296336 (patch) | |
| tree | 3fbb3a76d1fa830b4f0631141dfda8b8c9ff7412 | |
| parent | 0f74a8ff03ba65b36f0e3a41f9ba9a8b13e1adba (diff) | |
| download | dwm-flexipatch-56ad78e7d29df3854b79ffdbef15681d70296336.tar.gz dwm-flexipatch-56ad78e7d29df3854b79ffdbef15681d70296336.zip | |
Adding link to flextile-deluxe wiki page
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | patch/layout_flextile-deluxe.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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))) |
