aboutsummaryrefslogtreecommitdiff
path: root/.repos/dwm/config.h
diff options
context:
space:
mode:
Diffstat (limited to '.repos/dwm/config.h')
-rw-r--r--.repos/dwm/config.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/.repos/dwm/config.h b/.repos/dwm/config.h
index eef6a71..fb97363 100644
--- a/.repos/dwm/config.h
+++ b/.repos/dwm/config.h
@@ -41,12 +41,14 @@ typedef struct {
const char *name;
const void *cmd;
} Sp;
-const char *spcmd1[] = { "st", "-n", "spterm", "-g", "120x34", NULL };
-const char *spcmd2[] = { "st", "-n", "spcalc", "-g", "50x20", "-e", "python3", "-q", NULL };
+const char *spcmd1[] = { "st", "-n", "spterm", NULL };
+const char *spcmd2[] = { "st", "-n", "spcalc", "-e", "python3", "-q", NULL };
+const char *spcmd3[] = { "st", "-n", "splyri", "-e", "lyrics", "spotify", NULL };
static Sp scratchpads[] = {
/* name cmd */
{ "spterm", spcmd1 },
{ "spcalc", spcmd2 },
+ { "splyri", spcmd3 },
};
/* tagging */
@@ -67,6 +69,7 @@ static const Rule rules[] = {
{ "St", NULL, NULL, 0, 0, 1, 0, -1 },
{ NULL, "spterm", NULL, SPTAG(0), 1, 1, 0, -1 },
{ NULL, "spcalc", NULL, SPTAG(1), 1, 1, 0, -1 },
+ { NULL, "splyri", NULL, SPTAG(2), 1, 1, 0, -1 },
//{ NULL, NULL, "REPL", 1 << 2, 0, 1, 0, -1 },
{ NULL, NULL, "WhatsApp", 1 << 7, 0, 0, 0, -1 },
};