From df52cb313b0e614ab0545701df64143d390a16b8 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 5 Jul 2020 22:43:02 +0200 Subject: Added lyrics script --- .repos/dwm/config.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to '.repos/dwm/config.h') 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 }, }; -- cgit v1.2.3