archy-dwm/layouts/layouts.h
2022-07-10 21:00:35 +02:00

21 lines
512 B
C

#ifndef layouts_H
#define layouts_H
// Include all layouts
#include "tile.c"
#include "monocle.c"
#include "grid.c"
#include "fibonacci.c"
// 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 },
};
#endif // !layouts.h