Added rxvt-unicode on mod+shift+return

This commit is contained in:
ganome 2025-03-16 16:47:15 -06:00
parent 8396763a72
commit 76cad51632
Signed by untrusted user who does not match committer: Ganome
GPG Key ID: 944DE53336D81B83

View File

@ -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} },