diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-27 10:34:50 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-27 10:34:50 +0530 | 
| commit | 708721296334c1c7bf562bd7d20668f7d15e7b69 (patch) | |
| tree | 4241f658d7e735df0fb4ccc88ec59fb144ee1ba2 /patches/attachbottom.patch | |
| parent | 57f3d5960bd25ef8481d8e2a3b5f359ec20f13ab (diff) | |
remove patches
Diffstat (limited to 'patches/attachbottom.patch')
| -rw-r--r-- | patches/attachbottom.patch | 26 | 
1 files changed, 0 insertions, 26 deletions
| diff --git a/patches/attachbottom.patch b/patches/attachbottom.patch deleted file mode 100644 index d7fdb43..0000000 --- a/patches/attachbottom.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 0dda3ed8634154fd3887b71133b451d66a11b61d Mon Sep 17 00:00:00 2001 -From: Ben Collerson <benc@benc.cc> -Date: Thu, 4 Jan 2024 23:31:41 +1000 -Subject: [PATCH] attachbottom - ---- - dwl.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -diff --git a/dwl.c b/dwl.c -index bf763df..12e08e2 100644 ---- a/dwl.c -+++ b/dwl.c -@@ -1605,7 +1605,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: | 
