Xinqi Bao's Git
projects
/
dwm.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
6229ed2
)
applied applyrules-fix by Jukka, thank you Jukka!
author
Anselm R Garbe <
[email protected]
>
Mon, 7 Apr 2008 08:05:41 +0000
(09:05 +0100)
committer
Anselm R Garbe <
[email protected]
>
Mon, 7 Apr 2008 08:05:41 +0000
(09:05 +0100)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
ef241a3
..
9dd501a
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-261,9
+261,9
@@
applyrules(Client *c) {
XGetClassHint(dpy, c->win, &ch);
for(i = 0; i < LENGTH(rules); i++) {
r = &rules[i];
XGetClassHint(dpy, c->win, &ch);
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)))
+ 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)))
{
c->isfloating = r->isfloating;
if(r->tag) {
{
c->isfloating = r->isfloating;
if(r->tag) {