dwm-meillo
diff config.default.h @ 191:56fee1dc9d53
switched to regexp matching for Rules
author | arg@10ksloc.org |
---|---|
date | Fri, 04 Aug 2006 14:40:32 +0200 |
parents | 713dcc7d2c42 |
children | 60e73ebaab27 |
line diff
1.1 --- a/config.default.h Fri Aug 04 13:42:40 2006 +0200 1.2 +++ b/config.default.h Fri Aug 04 14:40:32 2006 +0200 1.3 @@ -47,9 +47,8 @@ 1.4 }; 1.5 1.6 #define RULES \ 1.7 - const unsigned int two[] = { 2 }; \ 1.8 static Rule rule[] = { \ 1.9 - /* class:instance tags isfloat */ \ 1.10 - { "Firefox.*", two, False }, \ 1.11 - { "Gimp.*", NULL, True}, \ 1.12 + /* class:instance regex tags regex isfloat */ \ 1.13 + { "Firefox.*", "2", False }, \ 1.14 + { "Gimp.*", NULL, True}, \ 1.15 };