archy-dwm/src/layouts/layouts.h

25 lines
768 B
C
Raw Permalink Normal View History

#ifndef layouts_H
#define layouts_H
// Include all layouts
#include "tile.c"
#include "monocle.c"
#include "grid.c"
#include "fibonacci.c"
2022-07-10 20:02:35 +00:00
#include "centeredmaster.h"
2022-07-10 19:00:35 +00:00
// Layouts array
static const Layout layouts[] = {
/* symbol arrange function */
2022-07-10 20:02:35 +00:00
{ "[]=", tile }, /* first entry is default */
{ "><>", NULL }, /* no layout function means floating behavior */
{ "[M]", monocle }, // 2
{ "HHH", grid }, // 3
{ "[@]", spiral }, // 4
{ "[\\]", dwindle }, // 5
{ "|M|", centeredmaster }, // 6
{ ">M>", centeredfloatingmaster }, // 7
2022-07-10 19:00:35 +00:00
};
#endif // !layouts.h