-#define NORMBGCOLOR "#333366"
-#define NORMFGCOLOR "#cccccc"
-#define SELBGCOLOR "#666699"
-#define SELFGCOLOR "#eeeeee"
-#define STATUSBGCOLOR "#dddddd"
-#define STATUSFGCOLOR "#222222"
+#define NORMBORDERCOLOR "#dddddd"
+#define NORMBGCOLOR "#eeeeee"
+#define NORMFGCOLOR "#222222"
+#define SELBORDERCOLOR "#ff0000"
+#define SELBGCOLOR "#006699"
+#define SELFGCOLOR "#ffffff"
+#define TOPBAR True /* False */
+
+/* behavior */
+#define SNAP 20 /* pixel */
+#define TAGS \
+const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL };
+/* Query class:instance:title for regex matching info with following command:
+ * xprop | awk -F '"' '/^WM_CLASS/ { printf("%s:%s:",$4,$2) }; /^WM_NAME/ { printf("%s\n",$2) }' */
+#define RULES \
+static Rule rule[] = { \
+ /* class:instance:title regex tags regex isversatile */ \
+ { "Gimp", NULL, True }, \
+ { "MPlayer", NULL, True }, \
+ { "Acroread", NULL, True }, \
+};