]> git.armaanb.net Git - dwm.git/commitdiff
simplifying regexps in config samples
authorAnselm R. Garbe <arg@suckless.org>
Wed, 14 Feb 2007 08:31:23 +0000 (09:31 +0100)
committerAnselm R. Garbe <arg@suckless.org>
Wed, 14 Feb 2007 08:31:23 +0000 (09:31 +0100)
config.arg.h
config.default.h

index db18df2e80b572442a02d54ce9a24d2ca4aa57a4..2b94fd6480880a5fc3deb54a10470c521f0bca9e 100644 (file)
@@ -87,8 +87,8 @@ static Key key[] = { \
 #define RULES \
 static Rule rule[] = { \
        /* class:instance:title regex   tags regex      isfloat */ \
-       { "Firefox.*",                  "3",            False }, \
-       { "Gimp.*",                     NULL,           True }, \
-       { "MPlayer.*",                  NULL,           True }, \
-       { "Acroread.*",                 NULL,           True }, \
+       { "Firefox",                    "3",            False }, \
+       { "Gimp",                       NULL,           True }, \
+       { "MPlayer",                    NULL,           True }, \
+       { "Acroread",                   NULL,           True }, \
 };
index 49e45c20c52be74b9547b4a5f0dcc7dfec80aaaa..b8654bd90672562eb2ef7dfc8659310dc492d9ad 100644 (file)
@@ -84,7 +84,7 @@ static Key key[] = { \
 #define RULES \
 static Rule rule[] = { \
        /* class:instance:title regex   tags regex      isfloat */ \
-       { "Gimp.*",                     NULL,           True }, \
-       { "MPlayer.*",                  NULL,           True }, \
-       { "Acroread.*",                 NULL,           True }, \
+       { "Gimp",                       NULL,           True }, \
+       { "MPlayer",                    NULL,           True }, \
+       { "Acroread",                   NULL,           True }, \
 };