From d7850a5ff37ca70f4463e285ec8afe4e452d9ad1 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Thu, 1 Feb 2024 18:19:57 +0530 Subject: attachbottom --- dwl.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'dwl.c') diff --git a/dwl.c b/dwl.c index 22607a9..4193d02 100644 --- a/dwl.c +++ b/dwl.c @@ -1588,7 +1588,11 @@ mapnotify(struct wl_listener *listener, void *data) c->geom.height += 2 * c->bw; /* Insert this client into client lists. */ - wl_list_insert(&clients, &c->link); + if (clients.prev) + // tile at the bottom + wl_list_insert(clients.prev, &c->link); + else + wl_list_insert(&clients, &c->link); wl_list_insert(&fstack, &c->flink); /* Set initial monitor, tags, floating status, and focus: -- cgit v1.2.3