aboutsummaryrefslogtreecommitdiff
path: root/sway/container.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/container.c')
-rw-r--r--sway/container.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sway/container.c b/sway/container.c
index ba37d7c8..3315fd93 100644
--- a/sway/container.c
+++ b/sway/container.c
@@ -87,7 +87,10 @@ swayc_t *new_output(wlc_handle handle) {
sway_log(L_DEBUG, "Matched output config for %s", name);
break;
}
- oc = NULL;
+ if (strcasecmp("*", oc->name) == 0) {
+ sway_log(L_DEBUG, "Matched wildcard output config for %s", name);
+ break;
+ }
}
if (oc && !oc->enabled) {