grpupbar: Add config options to color inactive and locked groupbar titles (#10667)

This commit is contained in:
Jacob Ilias Komissar
2025-06-16 16:40:38 -04:00
committed by GitHub
parent aba2cfe7a8
commit 0ece4af36a
5 changed files with 50 additions and 11 deletions

View File

@@ -1015,10 +1015,28 @@ inline static const std::vector<SConfigOptionDescription> CONFIG_OPTIONS = {
},
SConfigOptionDescription{
.value = "group:groupbar:text_color",
.description = "controls the group bar text color",
.description = "color for window titles in the groupbar",
.type = CONFIG_OPTION_COLOR,
.data = SConfigOptionDescription::SColorData{0xffffffff},
},
SConfigOptionDescription{
.value = "group:groupbar:text_color_inactive",
.description = "color for inactive windows' titles in the groupbar (if unset, defaults to text_color)",
.type = CONFIG_OPTION_COLOR,
.data = SConfigOptionDescription::SColorData{}, //TODO: UNSET?
},
SConfigOptionDescription{
.value = "group:groupbar:text_color_locked_active",
.description = "color for the active window's title in a locked group (if unset, defaults to text_color)",
.type = CONFIG_OPTION_COLOR,
.data = SConfigOptionDescription::SColorData{}, //TODO: UNSET?
},
SConfigOptionDescription{
.value = "group:groupbar:text_color_locked_inactive",
.description = "color for inactive windows' titles in locked groups (if unset, defaults to text_color_inactive)",
.type = CONFIG_OPTION_COLOR,
.data = SConfigOptionDescription::SColorData{}, //TODO: UNSET?
},
SConfigOptionDescription{
.value = "group:groupbar:col.active",
.description = "active group border color",