about summary refs log tree commit diff stats
path: root/config.default.h
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-14 09:31:23 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-14 09:31:23 +0100
commit2d7f59424c1b3974c3093cb800326437df7caa94 (patch)
treed87b04832fb3724175e115a3fd68237b6c441a62 /config.default.h
parente256afe31ef6a70eceb632ddfe717bfe6d8d9169 (diff)
downloaddwm-2d7f59424c1b3974c3093cb800326437df7caa94.tar.gz
simplifying regexps in config samples 3.5
Diffstat (limited to 'config.default.h')
-rw-r--r--config.default.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.default.h b/config.default.h
index 49e45c2..b8654bd 100644
--- a/config.default.h
+++ b/config.default.h
@@ -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 }, \
 };