~ruther/dwl

c5e0a485029ecf35abe5aaf3b7331aedd16c23b3 — Rutherther 8 months ago a53f55a + 5f0d8e5
Merge branch 'v0.7/patch-movestack' into v0.7/patched-base
2 files changed, 37 insertions(+), 0 deletions(-)

M config.def.h
M dwl.c
M config.def.h => config.def.h +2 -0
@@ 137,6 137,8 @@ static const Key keys[] = {
	{ MODKEY,                    XKB_KEY_b,          togglebar,      {0} },
	{ 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} },

M dwl.c => dwl.c +35 -0
@@ 341,6 341,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);


@@ 2214,6 2215,40 @@ monocle(Monitor *m)
}

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 (VISIBLEON(c, selmon) || &c->link == &clients) {
                break; /* found it */
            }
        }
    } else {
        wl_list_for_each_reverse(c, &sel->link, link) {
            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)
{
	/* This event is forwarded by the cursor when a pointer emits an _absolute_

Do not follow this link