diff options
| author | Anselm R Garbe <garbeam@gmail.com> | 2008-05-15 10:47:26 +0100 | 
|---|---|---|
| committer | Anselm R Garbe <garbeam@gmail.com> | 2008-05-15 10:47:26 +0100 | 
| commit | 71681c21a594260604779b96f46d51c82af11a03 (patch) | |
| tree | a99a7ab8ce228e871232ae30c6f25e8563896177 | |
| parent | 704781875cde5412bcb8859f3c5961664f62ced8 (diff) | |
| download | dwm-71681c21a594260604779b96f46d51c82af11a03.tar.gz | |
added wild-card handling for tags
| -rw-r--r-- | dwm.c | 8 | 
1 files changed, 6 insertions, 2 deletions
@@ -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;  			}  		}  |