diff --git a/config.def.h b/config.def.h index 20b5cd1..8378c4b 100644 --- a/config.def.h +++ b/config.def.h @@ -260,11 +260,13 @@ NULL // static const char *vesktop[] = { "vesktop", NULL }; static const char *wallpapercmd[]= { "/home/ganome/.local/bin/wallsetter.dwm", NULL }; static const char *termcmd[] = { "ghostty", NULL }; +static const char *term2cmd[] = { "urxvt", NULL }; static const Key keys[] = { /* modifier key function argument */ { MODKEY, XK_p, spawn, {.v = dmenucmd } }, { MODKEY, XK_Return, spawn, {.v = termcmd } }, + { MODKEY|ShiftMask, XK_Return, spawn, {.v = term2cmd } }, { MODKEY, XK_b, togglebar, {0} }, { MODKEY, XK_j, focusstack, {.i = +1 } }, { MODKEY, XK_k, focusstack, {.i = -1 } }, @@ -278,7 +280,7 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_o, setcfact, {0} }, { MODKEY|ShiftMask, XK_j, movestack, {.i = +1 } }, { MODKEY|ShiftMask, XK_k, movestack, {.i = -1 } }, - { MODKEY|ShiftMask, XK_Return, zoom, {0} }, + { MODKEY|ControlMask, XK_Return, zoom, {0} }, { Mod1Mask, XK_Tab, alttabstart, {0} }, { MODKEY|ShiftMask, XK_q, killclient, {0} }, { MODKEY|ShiftMask, XK_e, quit, {0} },