My configuration of sxmo fork of suckless dwm.

git clone git://watertao.xyz/programs/sxmo-dwm.git

commit 198c2e0fd6dbc459acca7bdbca80cc07576449be
parent 903bf556289c971ffef904ba30f9edae5d3a339e
Author: Miles Alan <m@milesalan.com>
Date:   Wed, 28 Jul 2021 20:52:06 -0400

Add inplacerotate back as MOD+x

This way we can call from sxmo_inputhandler.sh to rotate all clients
on double voldown tap fixing regression where that keybinding doesn't
rotate all clients.

Signed-off-by: Maarten van Gompel <proycon@anaproy.nl>

Diffstat:
Mconfig.def.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -113,6 +113,8 @@ static Key keys[] = { { 0, MODKEY|ShiftMask, XK_j, pushdown, {.i = +1 } }, { 0, MODKEY|ShiftMask, XK_k, pushup, {.i = -1 } }, + { 0, MODKEY, XK_x, inplacerotate, {.i = +2 } }, + { 0, 0, XF86XK_MonBrightnessUp, spawn, SHCMD("sxmo_brightness.sh up") }, { 0, 0, XF86XK_MonBrightnessDown, spawn, SHCMD("sxmo_brightness.sh down") }, { 0, MODKEY|ShiftMask, XK_Down, spawn, SHCMD("sxmo_vol.sh down") },