From 2b9b273e5ab6905b166cc4832ef03e8e7dd2c054 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Thu, 31 Mar 2022 12:23:36 +0200 Subject: [PATCH] Let's try urxvtd. --- _suckless/dwm/config.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/_suckless/dwm/config.h b/_suckless/dwm/config.h index a19a947..60a9091 100644 --- a/_suckless/dwm/config.h +++ b/_suckless/dwm/config.h @@ -31,8 +31,8 @@ typedef struct { const char *name; const void *cmd; } Sp; -const char *spcmd1[] = {"urxvt", "-n", "spterm", "-g", "120x34", NULL }; -const char *spcmd2[] = {"urxvt", "-n", "spwork", "-g", "120x34", NULL }; +const char *spcmd1[] = {"urxvtc", "-n", "spterm", "-g", "120x34", NULL }; +const char *spcmd2[] = {"urxvtc", "-n", "spwork", "-g", "120x34", NULL }; static Sp scratchpads[] = { /* name cmd */ {"spterm", spcmd1}, @@ -48,7 +48,7 @@ static const Rule rules[] = { * WM_NAME(STRING) = title */ /* class instance title tags mask isfloating isterminal noswallow monitor */ - { NULL, NULL, "urxvt", 0, 0, 1, 0, -1 }, + { NULL, NULL, "urxvtc", 0, 0, 1, 0, -1 }, { "firefox", NULL, NULL, 2, 0, 0, 1, -1 }, { "Ferdi", NULL, NULL, 1 << 2, 0, 0, 0, -1 }, { "Slack", NULL, NULL, 1 << 7, 0, 0, 0, -1 }, @@ -103,12 +103,12 @@ static Key keys[] = { TAGKEYS( XK_0, 9) /* apps n'shit */ //{ MODKEY, XK_Return, spawn, {.v = termcmd } }, - { MODKEY, XK_Return, spawn, SHCMD("urxvt") }, - { SHTKEY, XK_Return, spawn, SHCMD("urxvt -name work") }, + { MODKEY, XK_Return, spawn, SHCMD("urxvtc") }, + { SHTKEY, XK_Return, spawn, SHCMD("urxvtc -name work") }, { MODKEY, XK_space, spawn, SHCMD("dmenu_run -c -i -l 20") }, { MODKEY, XK_i, spawn, SHCMD("scrot -f -s 'scrot_%Y-%m-%d_%H-%M-%S_%s.png'") }, { SHTKEY, XK_i, spawn, SHCMD("scrot 'scrot_%Y-%m-%d_%H-%M-%S_%s.png'") }, - { MODKEY, XK_m, spawn, SHCMD("pgrep -x neomutt > /dev/null || BROWSER=firefox st -n mutt -e neomutt") }, + { MODKEY, XK_m, spawn, SHCMD("pgrep -x neomutt > /dev/null || urxvtc -name mutt -e neomutt") }, { MODKEY, XK_q, killclient, {0} }, { MODKEY, XK_e, togglescratch, {.ui = 0 } }, { SHTKEY, XK_e, togglescratch, {.ui = 1 } },