archy-dwm/layouts/layouts.h

22 lines
512 B
C
Raw 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 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 },
};
#endif // !layouts.h