X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/6229ed20c2af107305eccb8b536afd8620443647..146ff227fe0d231bcfc59268364461ab8850c5fe:/dwm.c?ds=sidebyside diff --git a/dwm.c b/dwm.c index ef241a3..852f7ac 100644 --- a/dwm.c +++ b/dwm.c @@ -261,9 +261,9 @@ applyrules(Client *c) { XGetClassHint(dpy, c->win, &ch); 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))) + if((!r->title || strstr(c->name, r->title)) + && (!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) {