diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-02-14 09:31:23 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-14 09:31:23 +0100 |
commit | 2d7f59424c1b3974c3093cb800326437df7caa94 (patch) | |
tree | d87b04832fb3724175e115a3fd68237b6c441a62 | |
parent | e256afe31ef6a70eceb632ddfe717bfe6d8d9169 (diff) | |
download | dwm-2d7f59424c1b3974c3093cb800326437df7caa94.tar.gz |
simplifying regexps in config samples 3.5
-rw-r--r-- | config.arg.h | 8 | ||||
-rw-r--r-- | config.default.h | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/config.arg.h b/config.arg.h index db18df2..2b94fd6 100644 --- a/config.arg.h +++ b/config.arg.h @@ -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 }, \ }; 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 }, \ }; |