My configuration of sxmo fork of suckless dwm.

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

commit 14d68bc4ca9c1cb88462e5c729b42c51f6425563
parent 8537e1246df99d1d7d74134a52ad196c10a1b1f0
Author: Miles Alan <m@milesalan.com>
Date:   Mon, 16 Mar 2020 20:07:11 -0500

Fix bug with holdkeys being index 0

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

diff --git a/config.def.h b/config.def.h @@ -63,6 +63,9 @@ static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, #include <X11/XF86keysym.h> static Key keys[] = { + // TODO: hold functionality doesnt work if keybinding starts at 0 index + {0, MODKEY, XK_0, view, {.ui = ~0 } }, + {1, 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("sxmo_appmenu.sh") }, {2, 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("sxmo_appmenu.sh sys") }, {3, 0, XF86XK_AudioRaiseVolume, spawn, SHCMD("sxmo_lowpowermode.sh") },