dwl

My patch set and modifications to dwl
git clone git://git.ethandl.dev/dwl
Log | Files | Refs | README | LICENSE

commit b19afa10f363b3e9dff9966eeccb396cd4285738
parent 7afe152c47de22ba974b85ef2bfa76490bb33a54
Author: Devin J. Pohly <djpohly@gmail.com>
Date:   Sun,  3 May 2020 11:39:48 -0500

use strstr for monrules

Diffstat:
Mdwl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dwl.c b/dwl.c @@ -414,7 +414,7 @@ createmon(struct wl_listener *listener, void *data) m->wlr_output = wlr_output; m->tagset[0] = m->tagset[1] = 1; for (r = monrules; r < END(monrules); r++) { - if (!r->name || !strcmp(wlr_output->name, r->name)) { + if (!r->name || strstr(wlr_output->name, r->name)) { m->mfact = r->mfact; m->nmaster = r->nmaster; wlr_output_set_scale(wlr_output, r->scale);