Browse Source

applied Gottox' applyrules() fix

main
anselm@anselm1 16 years ago
parent
commit
146ff227fe
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      dwm.c

+ 2
- 2
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) {


Loading…
Cancel
Save