applied Gottox' applyrules() fix

This commit is contained in:
anselm@anselm1 2008-04-20 18:17:33 +01:00
parent bb0a328978
commit 146ff227fe
1 changed files with 2 additions and 2 deletions

4
dwm.c
View File

@ -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) {