summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-06-25 00:27:40 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-06-25 00:27:40 +0900
commit6581ff6e849738847aaa2f023453afbf78b91240 (patch)
treecc340c21aad7196ce5070cf03e7e212e5cef5762
parent9559a8d34da08329b56df35cbfe199da446e96d8 (diff)
modified dwm/README
-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))