diff -r 4d42aee62090 -r 710f0fc31764 config.def.h --- a/config.def.h Sat May 17 14:23:05 2008 +0100 +++ b/config.def.h Sat May 17 14:38:22 2008 +0100 @@ -9,6 +9,7 @@ #define SELBORDERCOLOR "#0066ff" #define SELBGCOLOR "#0066ff" #define SELFGCOLOR "#ffffff" +#define SNAP 32 /* snap pixel */ /* tagging */ const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; @@ -19,15 +20,14 @@ }; /* layout(s) */ +#define RESIZEHINTS True /* False - respect size hints in tiled resizals */ #define MFACT 0.55 /* master factor [0.1 .. 0.9] */ -#define RESIZEHINTS True /* False - respect size hints in tiled resizals */ -#define SNAP 32 /* snap pixel */ - +#include "tile.c" Layout layouts[] = { - /* symbol function */ - { "[]=", tile }, /* first entry is default */ - { "><>", NULL }, /* no layout function means floating behavior */ - { "", monocle }, /* TODO: remove this */ + /* symbol arrange geom */ + { "[]=", tile, tilegeom }, /* first entry is default */ + { "><>", NULL, }, /* no layout function means floating behavior */ + { "", monocle, NULL }, /* TODO: remove this */ }; /* key definitions */