summaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2024-02-29 15:22:06 -0500
committerMalfurious <m@lfurio.us>2024-03-05 21:04:47 -0500
commit5746fa052056ef9d254996597b63ad0757c1e9cc (patch)
tree57dd959883f2f70c3a96a72606e36c7325e03310 /config.def.h
parentd59a556c479cf396edc6cec17fd687ee32866b22 (diff)
downloaddwm-5746fa052056ef9d254996597b63ad0757c1e9cc.tar.gz
dwm-5746fa052056ef9d254996597b63ad0757c1e9cc.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 03296f0..c0dfdd4 100644
--- a/config.def.h
+++ b/config.def.h
@@ -95,6 +95,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} },