diff options
author | Malfurious <m@lfurio.us> | 2022-02-12 10:08:02 -0500 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-06-03 22:05:34 -0400 |
commit | e95d3939f4756fe81f1555a839835bb91e61f28d (patch) | |
tree | db33d3c45311bb5cb2ca8be85aad00e9be069608 /config.def.h | |
parent | 5e386e97fcce76d5b460e3261abc29199b85b534 (diff) | |
download | dwm-e95d3939f4756fe81f1555a839835bb91e61f28d.tar.gz dwm-e95d3939f4756fe81f1555a839835bb91e61f28d.zip |
patch: push up/down
pushup and pushdown provide a way to move clients inside the clients
list.
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index a3b6c1a..96df03e 100644 --- a/config.def.h +++ b/config.def.h @@ -87,6 +87,8 @@ static const Key keys[] = { { MODKEY, XK_d, incnmaster, {.i = -1 } }, { 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} }, |