From dfcd142ce4079d36f5a0a73f9104ba87c365ef12 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Leonardo=20Hern=C3=A1ndez=20Hern=C3=A1ndez?=
 <leohdz172@protonmail.com>
Date: Thu, 18 Aug 2022 17:24:11 -0500
Subject: [PATCH] don't try to set monitor for clients in createmon()

this is done in updatemons()
---
 dwl.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/dwl.c b/dwl.c
index 3a044d3..ebb74b8 100644
--- a/dwl.c
+++ b/dwl.c
@@ -944,11 +944,6 @@ createmon(struct wl_listener *listener, void *data)
 	 */
 	m->scene_output = wlr_scene_output_create(scene, wlr_output);
 	wlr_output_layout_add_auto(output_layout, wlr_output);
-
-	/* If there are clients without monitor set this as their monitor */
-	wl_list_for_each(c, &clients, link)
-		if (!c->mon)
-			setmon(c, m, c->tags);
 }
 
 void