dwm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 5edcc108408680b98f9b95cae84203211bc0cb8a
parent 99a17f8a00f1d4c2de62b1115db338207ddce547
Author: Kris Yotam <krisyotam@protonmail.com>
Date:   Sun, 15 Feb 2026 10:08:25 -0600

Disable self_restart on Mod+Shift+r to fix reading mode conflict

self_restart was intercepting Mod+Shift+r before the reading mode
layout binding. Restart is still available via sysact (Mod+BackSpace).

Diffstat:
Mconfig.def.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config.def.h b/config.def.h @@ -1255,7 +1255,7 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_x, killunsel, {0} }, #endif // KILLUNSEL_PATCH #if SELFRESTART_PATCH - { MODKEY|ShiftMask, XK_r, self_restart, {0} }, + /* { MODKEY|ShiftMask, XK_r, self_restart, {0} }, // removed: Super+Shift+r now reading mode, restart via sysact */ #endif // SELFRESTART_PATCH { MODKEY|ShiftMask, XK_q, quit, {0} }, #if RESTARTSIG_PATCH