From dd3ef35a4eed8e8af6ed3a77a383c476a5b095ef Mon Sep 17 00:00:00 2001 From: Alexis Jhon Gaspar Date: Sat, 23 Sep 2023 22:53:52 +0800 Subject: [PATCH] Fix keybind conflict --- dwm-flexipatch/config.def.h | 2 +- st-flexipatch/config.def.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dwm-flexipatch/config.def.h b/dwm-flexipatch/config.def.h index 197cbe6..80430a8 100644 --- a/dwm-flexipatch/config.def.h +++ b/dwm-flexipatch/config.def.h @@ -937,7 +937,7 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } }, #if RIODRAW_PATCH { MODKEY|ControlMask, XK_s, riospawnsync, {.v = dmenucmd } }, - { ControlMask|ShiftMask, XK_Return, riospawn, {.v = termcmd } }, + { ControlMask, XK_Return, riospawn, {.v = termcmd } }, { MODKEY, XK_s, rioresize, {0} }, #endif // RIODRAW_PATCH { MODKEY, XK_b, togglebar, {0} }, diff --git a/st-flexipatch/config.def.h b/st-flexipatch/config.def.h index 4e131ee..9c9b882 100644 --- a/st-flexipatch/config.def.h +++ b/st-flexipatch/config.def.h @@ -424,7 +424,7 @@ static Shortcut shortcuts[] = { { MODKEY, XK_o, opencopied, {.v = "xdg-open"} }, #endif // OPENCOPIED_PATCH #if NEWTERM_PATCH - { TERMMOD, XK_t, newterm, {.i = 0} }, + { TERMMOD, XK_Return, newterm, {.i = 0} }, #endif // NEWTERM_PATCH #if EXTERNALPIPE_PATCH { TERMMOD, XK_U, externalpipe, { .v = openurlcmd } },