JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
removed unnecessary border color
[dwm.git] / config.default.h
index f3fd7b7..9ce11fd 100644 (file)
@@ -11,7 +11,6 @@ const char *tags[] = { "0", "1", "2", "3", "4", NULL };
 #define FONT                   "fixed"
 #define BGCOLOR                        "#666699"
 #define FGCOLOR                        "#eeeeee"
-#define BORDERCOLOR            "#9999CC"
 #define MODKEY                 Mod1Mask
 #define NUMLOCKMASK            Mod2Mask
 #define MASTERW                        60 /* percent */
@@ -47,9 +46,8 @@ static Key key[] = { \
 };
 
 #define RULES \
-       const unsigned int two[] = { 2 }; \
 static Rule rule[] = { \
-       /* class:instance       tags            isfloat */ \
-       { "Firefox.*",          two,    False }, \
-       { "Gimp.*",             NULL,           True}, \
+       /* class:instance regex         tags regex      isfloat */ \
+       { "Firefox.*",                  "2",            False }, \
+       { "Gimp.*",                     NULL,           True}, \
 };