From 6581ff6e849738847aaa2f023453afbf78b91240 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Wed, 25 Jun 2025 00:27:40 +0900 Subject: modified dwm/README --- dwm/README | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'dwm') 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)) -- cgit v1.2.3