diff options
| -rw-r--r-- | config.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,7 +1,8 @@ /* See LICENSE file for copyright and license details. */ /* Constants */ -#define TERMINAL "st" +#define TERMINAL "kitty" +#define TERMINAL2 "st" #define TERMCLASS "St" #define BROWSER "firefox" @@ -38,8 +39,8 @@ typedef struct { const char *name; const void *cmd; } Sp; -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 }; +const char *spcmd1[] = {TERMINAL2, "-n", "spterm", "-g", "120x34", NULL }; +const char *spcmd2[] = {TERMINAL2, "-n", "spcalc", "-f", "monospace:size=16", "-g", "50x20", "-e", "bc", "-lq", NULL }; static Sp scratchpads[] = { /* name cmd */ {"spterm", spcmd1}, |