X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=dwm.c;h=b86ba946d5cf3a90abe65b2a411b25154f0b7ea0;hp=02c30d4ba30273e2b182f6a50361cdcd74a84808;hb=71681c21a594260604779b96f46d51c82af11a03;hpb=704781875cde5412bcb8859f3c5961664f62ced8 diff --git a/dwm.c b/dwm.c index 02c30d4..b86ba94 100644 --- a/dwm.c +++ b/dwm.c @@ -240,7 +240,7 @@ Window root, barwin; void applyrules(Client *c) { - unsigned int i; + unsigned int i, j; Bool matched = False; Rule *r; XClassHint ch = { 0 }; @@ -254,7 +254,11 @@ applyrules(Client *c) { && (!r->instance || (ch.res_name && strstr(ch.res_name, r->instance)))) { c->isfloating = r->isfloating; if(r->tag) { - c->tags[idxoftag(r->tag)] = True; + if(r->tag[0] == '*' && r->tag[1] == 0) + for(j = 0; j < LENGTH(tags); i++) + c->tags[j] = True; + else + c->tags[idxoftag(r->tag)] = True; matched = True; } }