added fibonacci patch

This commit is contained in:
2020-07-02 12:40:33 +02:00
parent 47e0d23010
commit 10c43f04a3
3 changed files with 184 additions and 1 deletions

View File

@@ -38,9 +38,12 @@ static const float mfact = 0.55; /* factor of master area size [0.05..0.95]
static const int nmaster = 1; /* number of clients in master area */
static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
#include "fibonacci.c"
static const Layout layouts[] = {
/* symbol arrange function */
{ "[]=", tile }, /* first entry is default */
{ "[@]", spiral }, /* first entry is default */
{ "[\\]", dwindle },
{ "[]=", tile },
{ "><>", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle },
{ "TTT", bstack },