Xinqi Bao's Git
projects
/
dwm.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (from parent 1:
7047818
)
added wild-card handling for tags
author
Anselm R Garbe <
[email protected]
>
Thu, 15 May 2008 09:47:26 +0000
(10:47 +0100)
committer
Anselm R Garbe <
[email protected]
>
Thu, 15 May 2008 09:47:26 +0000
(10:47 +0100)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
02c30d4
..
b86ba94
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-240,7
+240,7
@@
Window root, barwin;
void
applyrules(Client *c) {
void
applyrules(Client *c) {
- unsigned int i;
+ unsigned int i
, j
;
Bool matched = False;
Rule *r;
XClassHint ch = { 0 };
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) {
&& (!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;
}
}
matched = True;
}
}