Browse Source

applied Gottox' applyrules() fix

master
anselm@anselm1 17 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++) { for(i = 0; i < LENGTH(rules); i++) {
r = &rules[i]; r = &rules[i];
if((!r->title || strstr(c->name, r->title)) if((!r->title || strstr(c->name, r->title))
&& (!ch.res_class || !r->class || strstr(ch.res_class, r->class)) && (!r->class || (ch.res_class && strstr(ch.res_class, r->class)))
&& (!ch.res_name || !r->instance || strstr(ch.res_name, r->instance))) && (!r->instance || (ch.res_name && strstr(ch.res_name, r->instance)))) {
{ {
c->isfloating = r->isfloating; c->isfloating = r->isfloating;
if(r->tag) { if(r->tag) {


|||||||
x
 
000:0
Loading…
Cancel
Save