summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorMouad Alami <moadalami40@gmail.com>2023-04-24 16:56:03 +0100
committerMouad Alami <moadalami40@gmail.com>2023-04-24 16:56:03 +0100
commit86a253ef76a977f8b829de2853d9208334e33f68 (patch)
tree0918739074d06d125b864e5a362d89bcb4d13fd0 /config.h
parent4b6b071e3e8c84994b74b2e1f08a385f2bf69bda (diff)
movestack patch
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.h b/config.h
index 451fe00..8039055 100644
--- a/config.h
+++ b/config.h
@@ -18,6 +18,8 @@ static const char *colors[][3] = {
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
};
+#include "movestack.c"
+
/* tagging */
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
@@ -71,6 +73,8 @@ static const Key keys[] = {
{ MODKEY, XK_p, incnmaster, {.i = -1 } },
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
{ MODKEY, XK_l, setmfact, {.f = +0.05} },
+ { MODKEY|ShiftMask, XK_j, movestack, {.i = +1 } },
+ { MODKEY|ShiftMask, XK_k, movestack, {.i = -1 } },
{ MODKEY|ShiftMask, XK_f, zoom, {0} },
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY|ShiftMask, XK_q, killclient, {0} },