2022-07-10 18:24:03 +00:00
|
|
|
#ifndef layouts_H
|
|
|
|
#define layouts_H
|
|
|
|
|
2022-07-10 18:54:48 +00:00
|
|
|
// Include all layouts
|
2022-07-10 18:29:52 +00:00
|
|
|
#include "tile.c"
|
2022-07-10 18:54:48 +00:00
|
|
|
#include "monocle.c"
|
2022-07-10 18:24:03 +00:00
|
|
|
#include "grid.c"
|
|
|
|
#include "fibonacci.c"
|
|
|
|
|
2022-07-10 19:00:35 +00:00
|
|
|
// Layouts array
|
|
|
|
static const Layout layouts[] = {
|
|
|
|
/* symbol arrange function */
|
|
|
|
{ "[]=", tile }, /* first entry is default */
|
|
|
|
{ "><>", NULL }, /* no layout function means floating behavior */
|
|
|
|
{ "[M]", monocle },
|
|
|
|
{ "HHH", grid },
|
|
|
|
{ "[@]", spiral },
|
|
|
|
{ "[\\]", dwindle },
|
|
|
|
};
|
|
|
|
|
2022-07-10 18:24:03 +00:00
|
|
|
#endif // !layouts.h
|