diff options
| author | Fuwn <[email protected]> | 2024-05-23 15:05:07 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-05-23 15:05:07 -0700 |
| commit | a5035d24c8decd9992c3799317823fdb14fe6a51 (patch) | |
| tree | 006e9a5976a48d76cdd549958abe6b85bf68eac4 | |
| parent | feat(config.h): custom window manager name (diff) | |
| download | seiwm-a5035d24c8decd9992c3799317823fdb14fe6a51.tar.xz seiwm-a5035d24c8decd9992c3799317823fdb14fe6a51.zip | |
fix(config.h): swallow kitty
| -rw-r--r-- | config.h | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -3,7 +3,8 @@ /* Constants */ #define TERMINAL "kitty" #define TERMINAL2 "st" -#define TERMCLASS "St" +#define TERMCLASS "kitty" +#define TERMCLASS2 "St" #define BROWSER "firefox" /* appearance */ @@ -60,10 +61,10 @@ static const Rule rules[] = { /* { "Gimp", NULL, NULL, 1 << 8, 0, 0, 0, -1 }, */ { TERMCLASS, NULL, NULL, 0, 0, 1, 0, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, - { TERMCLASS, "floatterm", NULL, 0, 1, 1, 0, -1 }, - { TERMCLASS, "bg", NULL, 1 << 7, 0, 1, 0, -1 }, - { TERMCLASS, "spterm", NULL, SPTAG(0), 1, 1, 0, -1 }, - { TERMCLASS, "spcalc", NULL, SPTAG(1), 1, 1, 0, -1 }, + { TERMCLASS2, "floatterm", NULL, 0, 1, 1, 0, -1 }, + { TERMCLASS2, "bg", NULL, 1 << 7, 0, 1, 0, -1 }, + { TERMCLASS2, "spterm", NULL, SPTAG(0), 1, 1, 0, -1 }, + { TERMCLASS2, "spcalc", NULL, SPTAG(1), 1, 1, 0, -1 }, }; /* layout(s) */ |