mirror of
https://codeberg.org/dwl/dwl-patches.git
synced 2026-03-22 08:51:31 +00:00
update movestack to dwl 0.8
This commit is contained in:
parent
3ade6519ac
commit
f285a7dc01
@ -3,7 +3,9 @@ Allows you to move a window up and down the stack.
|
|||||||
|
|
||||||
### Download
|
### Download
|
||||||
- [git branch](https://codeberg.org/nikitaivanov/dwl/src/branch/movestack)
|
- [git branch](https://codeberg.org/nikitaivanov/dwl/src/branch/movestack)
|
||||||
- [v0.7](https://codeberg.org/dwl/dwl-patches/raw/branch/main/patches/movestack/movestack.patch)
|
- [v0.8](https://codeberg.org/dwl/dwl-patches/raw/branch/main/patches/movestack/movestack_dwl_08.patch)
|
||||||
|
- [v0.7](https://codeberg.org/dwl/dwl-patches/raw/branch/main/patches/movestack/movestack_dwl_07.patch)
|
||||||
|
|
||||||
|
|
||||||
### Authors
|
### Authors
|
||||||
- [wochap](https://codeberg.org/wochap)
|
- [wochap](https://codeberg.org/wochap)
|
||||||
|
|||||||
87
patches/movestack/movestack_dwl_08.patch
Normal file
87
patches/movestack/movestack_dwl_08.patch
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
From 0ad653a1b0bb0a4cf501fa132615100592b862cc Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Andr=C3=A9=20Desgualdo=20Pereira?= <desgua@gmail.com>
|
||||||
|
Date: Sat, 14 Mar 2026 18:08:35 -0300
|
||||||
|
Subject: [PATCH] update to dwl 0.8
|
||||||
|
|
||||||
|
---
|
||||||
|
config.def.h | 2 ++
|
||||||
|
dwl.c | 43 +++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
2 files changed, 45 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/config.def.h b/config.def.h
|
||||||
|
index 8a6eda0..f490e24 100644
|
||||||
|
--- a/config.def.h
|
||||||
|
+++ b/config.def.h
|
||||||
|
@@ -125,6 +125,8 @@ static const Key keys[] = {
|
||||||
|
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Return, spawn, {.v = termcmd} },
|
||||||
|
{ MODKEY, XKB_KEY_j, focusstack, {.i = +1} },
|
||||||
|
{ MODKEY, XKB_KEY_k, focusstack, {.i = -1} },
|
||||||
|
+ { MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_j, movestack, {.i = +1} },
|
||||||
|
+ { MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_k, movestack, {.i = -1} },
|
||||||
|
{ MODKEY, XKB_KEY_i, incnmaster, {.i = +1} },
|
||||||
|
{ MODKEY, XKB_KEY_d, incnmaster, {.i = -1} },
|
||||||
|
{ MODKEY, XKB_KEY_h, setmfact, {.f = -0.05f} },
|
||||||
|
diff --git a/dwl.c b/dwl.c
|
||||||
|
index 101a45f..67d3167 100644
|
||||||
|
--- a/dwl.c
|
||||||
|
+++ b/dwl.c
|
||||||
|
@@ -301,6 +301,7 @@ static void locksession(struct wl_listener *listener, void *data);
|
||||||
|
static void mapnotify(struct wl_listener *listener, void *data);
|
||||||
|
static void maximizenotify(struct wl_listener *listener, void *data);
|
||||||
|
static void monocle(Monitor *m);
|
||||||
|
+static void movestack(const Arg *arg);
|
||||||
|
static void motionabsolute(struct wl_listener *listener, void *data);
|
||||||
|
static void motionnotify(uint32_t time, struct wlr_input_device *device, double sx,
|
||||||
|
double sy, double sx_unaccel, double sy_unaccel);
|
||||||
|
@@ -1839,6 +1840,48 @@ monocle(Monitor *m)
|
||||||
|
wlr_scene_node_raise_to_top(&c->scene->node);
|
||||||
|
}
|
||||||
|
|
||||||
|
+void
|
||||||
|
+movestack(const Arg *arg)
|
||||||
|
+{
|
||||||
|
+ Client *c, *sel = focustop(selmon);
|
||||||
|
+
|
||||||
|
+ if (!sel) {
|
||||||
|
+ return;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ if (wl_list_length(&clients) <= 1) {
|
||||||
|
+ return;
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ if (arg->i > 0) {
|
||||||
|
+ wl_list_for_each(c, &sel->link, link) {
|
||||||
|
+ if (&c->link == &clients) {
|
||||||
|
+ c = wl_container_of(&clients, c, link);
|
||||||
|
+ break; /* wrap past the sentinel node */
|
||||||
|
+ }
|
||||||
|
+ if (VISIBLEON(c, selmon) || &c->link == &clients) {
|
||||||
|
+ break; /* found it */
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+ } else {
|
||||||
|
+ wl_list_for_each_reverse(c, &sel->link, link) {
|
||||||
|
+ if (&c->link == &clients) {
|
||||||
|
+ c = wl_container_of(&clients, c, link);
|
||||||
|
+ break; /* wrap past the sentinel node */
|
||||||
|
+ }
|
||||||
|
+ if (VISIBLEON(c, selmon) || &c->link == &clients) {
|
||||||
|
+ break; /* found it */
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+ /* backup one client */
|
||||||
|
+ c = wl_container_of(c->link.prev, c, link);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ wl_list_remove(&sel->link);
|
||||||
|
+ wl_list_insert(&c->link, &sel->link);
|
||||||
|
+ arrange(selmon);
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
void
|
||||||
|
motionabsolute(struct wl_listener *listener, void *data)
|
||||||
|
{
|
||||||
|
--
|
||||||
|
2.51.0
|
||||||
|
|
||||||
Loading…
x
Reference in New Issue
Block a user