use strstr for monrules

This commit is contained in:
Devin J. Pohly 2020-05-03 11:39:48 -05:00
parent 7afe152c47
commit b19afa10f3
1 changed files with 1 additions and 1 deletions

2
dwl.c
View File

@ -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);