diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-06-25 00:27:40 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-06-25 00:27:40 +0900 |
| commit | 6581ff6e849738847aaa2f023453afbf78b91240 (patch) | |
| tree | cc340c21aad7196ce5070cf03e7e212e5cef5762 | |
| parent | 9559a8d34da08329b56df35cbfe199da446e96d8 (diff) | |
modified dwm/README
| -rw-r--r-- | dwm/README | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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)) |
