From fd0493a65cfb4114662fbda671565ea15a0bdc4f Mon Sep 17 00:00:00 2001 From: joshua Date: Sun, 24 Dec 2023 17:56:54 -0500 Subject: Changed scratch pad command to calculator --- config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index 6591889..a323b99 100644 --- a/config.h +++ b/config.h @@ -39,12 +39,12 @@ typedef struct { const char *name; const void *cmd; } Sp; -const char *spcmd1[] = {"st", "-n", "spterm", "-g", "120x34", NULL }; -const char *spcmd2[] = {"st", "-n", "spfm", "-g", "144x41", "-e", "ranger", NULL }; +const char *spcmd1[] = {TERMINAL, "-n", "spterm", "-g", "120x34", NULL }; +const char *spcmd2[] = {TERMINAL, "-n", "spcalc", "-f", "monospace:size=16", "-g", "50x20", "-e", "bc", "-lq", NULL }; static Sp scratchpads[] = { /* name cmd */ {"spterm", spcmd1}, - {"spranger", spcmd2}, + {"spcalc", spcmd2}, }; -- cgit v1.2.3