diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-05-15 00:48:42 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-05-15 00:48:42 +0530 |
commit | 0a2b3665fe9ac42c732e2748b5d8ea93a1c0904d (patch) | |
tree | bac519c0fe1379fe0c0c26fb5b663b2a8926cbe6 | |
parent | 79e60e0f1237fe7c40cbddf35fe95573b55b541a (diff) |
added window rules and changed tag icons a bit
-rw-r--r-- | config.def.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h index 95bd506..788781e 100644 --- a/config.def.h +++ b/config.def.h @@ -19,16 +19,19 @@ static const char *colors[][4] = { /* tagging */ // static const char *tags[] = { "一", "二", "三", "四", "五", "六", "七", "八", "九", "十" }; -static const char *tags[] = { "", "", "", "", "", "", "", "", "", "" }; +static const char *tags[] = { "", "", "", "", "", "", "", "", "", "" }; static const Rule rules[] = { /* xprop(1): * WM_CLASS(STRING) = instance, class * WM_NAME(STRING) = title */ - /* class instance title tags mask isfloating monitor */ - { "Gimp", NULL, NULL, 0, 1, -1 }, - { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, + /* class instance title tags mask isfloating monitor */ + { "librewolf", NULL, NULL, 1 << 1, 0, -1 }, + { "kdenlive", NULL, NULL, 1 << 5, 0, -1 }, + { "Gimp", NULL, NULL, 1 << 6, 0, -1 }, + { "thunderbird", NULL, NULL, 1 << 8, 0, -1 }, + { "discord", NULL, NULL, 1 << 9, 0, -1 }, }; /* layout(s) */ |