From 80e3581af2ce0892bc14b4691f8eb0f07299e89f Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 26 Aug 2021 16:33:26 +0400 Subject: Added new patches: movestack, selfrestart, resizecorners --- config.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'config.h') diff --git a/config.h b/config.h index eb5b808..6788084 100644 --- a/config.h +++ b/config.h @@ -83,6 +83,8 @@ static const char *dmenucmd[] = { static const char *termcmd[] = { "st", NULL }; #include +#include "selfrestart.c" +#include "movestack.c" static Key keys[] = { /* modifier key function argument */ // These two shortcuts are handled by sxhkd @@ -95,6 +97,8 @@ static 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, movestack, {.i = +1 } }, + { MODKEY|ShiftMask, XK_k, movestack, {.i = -1 } }, // { MODKEY|ShiftMask, XK_Return, zoom, {0} }, // { MODKEY, XK_Tab, view, {0} }, { MODKEY, XK_q, killclient, {0} }, @@ -121,6 +125,7 @@ static Key keys[] = { TAGKEYS( XK_7, 6) TAGKEYS( XK_8, 7) TAGKEYS( XK_9, 8) + { MODKEY|ShiftMask, XK_r, self_restart, {0} }, { MODKEY|ShiftMask, XK_e, quit, {0} }, }; -- cgit v1.2.3