X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=dwm.c;h=852f7ac946dc1e39bee8489f03d37675d19e6620;hp=9dd501a6ed836194fa07f7d550fda2ee6408eac1;hb=146ff227fe0d231bcfc59268364461ab8850c5fe;hpb=bb0a328978d0af43ecd86b61d1a351dc5d933702 diff --git a/dwm.c b/dwm.c index 9dd501a..852f7ac 100644 --- a/dwm.c +++ b/dwm.c @@ -262,8 +262,8 @@ applyrules(Client *c) { for(i = 0; i < LENGTH(rules); i++) { r = &rules[i]; if((!r->title || strstr(c->name, r->title)) - && (!ch.res_class || !r->class || strstr(ch.res_class, r->class)) - && (!ch.res_name || !r->instance || strstr(ch.res_name, r->instance))) + && (!r->class || (ch.res_class && strstr(ch.res_class, r->class))) + && (!r->instance || (ch.res_name && strstr(ch.res_name, r->instance)))) { { c->isfloating = r->isfloating; if(r->tag) {