Let's try urxvtd.

This commit is contained in:
Bartek Stalewski 2022-03-31 12:23:36 +02:00
parent a0f847948b
commit 2b9b273e5a

View File

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