From 5edcc108408680b98f9b95cae84203211bc0cb8a Mon Sep 17 00:00:00 2001 From: Kris Yotam Date: Sun, 15 Feb 2026 10:08:25 -0600 Subject: [PATCH] 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). --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 76faa3cb4b4706cb036d8d452ff980c1a337fd5d..e071719a475b5564b5aa489b32fc6f85bedda221 100644 --- 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