summaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2024-02-29 15:22:06 -0500
committerMatt Hunter <m@lfurio.us>2026-01-18 00:18:46 -0500
commitbeed57c13b21878f27778d3e76dd60f656fe9092 (patch)
treeb95ad8aa8ba8ac5f076b40a0668dc9fb5bd3660a /config.def.h
parent910acdbcce502f99c39fd3e1b5efa9d528b636d3 (diff)
downloaddwm-beed57c13b21878f27778d3e76dd60f656fe9092.tar.gz
dwm-beed57c13b21878f27778d3e76dd60f656fe9092.zip
patch: push
pushup and pushdown provide a way to move clients inside the clients list.
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index e27c892..af11a0e 100644
--- a/config.def.h
+++ b/config.def.h
@@ -91,6 +91,8 @@ static const Key keys[] = {
{ MODKEY|ShiftMask, XK_l, setmfact, {.f = 5/3.0} },
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
+ { MODKEY|ShiftMask, XK_j, pushdown, {0} },
+ { MODKEY|ShiftMask, XK_k, pushup, {0} },
{ MODKEY, XK_Return, zoom, {0} },
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY, XK_q, killclient, {0} },