diff options
| author | Fuwn <[email protected]> | 2024-05-23 15:00:36 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-05-23 15:00:36 -0700 |
| commit | 3e6efcbe48261444aebe2df878439a9799393bea (patch) | |
| tree | 19ec6fc0a3769463559a5fa322adb15f25204340 | |
| parent | fix(dwm.c): bar widget press registration (diff) | |
| download | seiwm-3e6efcbe48261444aebe2df878439a9799393bea.tar.xz seiwm-3e6efcbe48261444aebe2df878439a9799393bea.zip | |
feat(config.h): use kitty as primary terminal
| -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}, |