diff options
author | arg@10ksloc.org <unknown> | 2006-08-04 14:40:32 +0200 |
---|---|---|
committer | arg@10ksloc.org <unknown> | 2006-08-04 14:40:32 +0200 |
commit | e21d93b7bd5d34f31bc09a576b7d449df5b68c07 (patch) | |
tree | fb5a123126b80d8cb9480aaec8c320fecfc2fec4 /config.default.h | |
parent | f504aea13289c7fd25d499d2582558d4e311bfbf (diff) | |
download | dwm-e21d93b7bd5d34f31bc09a576b7d449df5b68c07.tar.gz |
switched to regexp matching for Rules
Diffstat (limited to 'config.default.h')
-rw-r--r-- | config.default.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/config.default.h b/config.default.h index f3fd7b7..3847ff8 100644 --- a/config.default.h +++ b/config.default.h @@ -47,9 +47,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}, \ }; |