summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dwm/README9
1 files changed, 8 insertions, 1 deletions
diff --git a/dwm/README b/dwm/README
index 95d4fd0..a16c408 100644
--- a/dwm/README
+++ b/dwm/README
@@ -44,5 +44,12 @@ like this in your .xinitrc:
Configuration
-------------
-The configuration of dwm is done by creating a custom config.h
+The configuration of dwm is done by creating a custom config.def.h
and (re)compiling the source code.
+
+In applyrules function, the comparing method for class, name, and title
+is changed from strstr to strcmp:
+
+ if ((!r->title || strcmp(c->name, r->title) == 0)
+ && (!r->class || strcmp(class, r->class) == 0)
+ && (!r->instance || strcmp(instance,r->instance) == 0))