diff options
author | Leonard Kugis <leonard@kug.is> | 2025-05-23 11:41:09 +0000 |
---|---|---|
committer | Leonard Kugis <leonard@kug.is> | 2025-05-23 11:41:09 +0000 |
commit | c70505d7c7b7b48600f273357694b56ccf5d2a15 (patch) | |
tree | 21c27ac6ffced8d6d904e35bdb39baa5d685d829 /dwl-patches/patches/attachbottom | |
download | dotfiles-master.tar.gz dotfiles-master.tar.bz2 dotfiles-master.zip |
Diffstat (limited to 'dwl-patches/patches/attachbottom')
-rw-r--r-- | dwl-patches/patches/attachbottom/README.md | 10 | ||||
-rw-r--r-- | dwl-patches/patches/attachbottom/attachbottom.patch | 29 |
2 files changed, 39 insertions, 0 deletions
diff --git a/dwl-patches/patches/attachbottom/README.md b/dwl-patches/patches/attachbottom/README.md new file mode 100644 index 0000000..80e12a0 --- /dev/null +++ b/dwl-patches/patches/attachbottom/README.md @@ -0,0 +1,10 @@ +### Description +Newly created windows are placed at the bottom of the client tile stack. + +### Download +- [git branch](https://codeberg.org/bencc/dwl/src/branch/attachbottom) +- [2024-05-16](https://codeberg.org/dwl/dwl-patches/raw/branch/main/patches/attachbottom/attachbottom.patch) + +### Authors +- [Ben Collerson](https://codeberg.org/bencc) +- [Aurel Weinhold](https://github.com/AurelWeinhold) diff --git a/dwl-patches/patches/attachbottom/attachbottom.patch b/dwl-patches/patches/attachbottom/attachbottom.patch new file mode 100644 index 0000000..470a79b --- /dev/null +++ b/dwl-patches/patches/attachbottom/attachbottom.patch @@ -0,0 +1,29 @@ +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 bf763dfc..12e08e2b 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: +-- +2.43.0 + |