feat(container): add config |unfocused_tab_title|

This commit is contained in:
Shengdi 'shc' Chen 2024-05-22 22:05:11 +02:00
parent 9704152414
commit d84a73f1e5
6 changed files with 25 additions and 0 deletions

View file

@ -116,6 +116,7 @@ sway_cmd cmd_client_focused;
sway_cmd cmd_client_focused_inactive;
sway_cmd cmd_client_focused_tab_title;
sway_cmd cmd_client_unfocused;
sway_cmd cmd_client_unfocused_tab_title;
sway_cmd cmd_client_urgent;
sway_cmd cmd_client_placeholder;
sway_cmd cmd_client_background;

View file

@ -571,12 +571,14 @@ struct sway_config {
struct border_colors focused_inactive;
struct border_colors focused_tab_title;
struct border_colors unfocused;
struct border_colors unfocused_tab_title;
struct border_colors urgent;
struct border_colors placeholder;
float background[4];
} border_colors;
bool has_focused_tab_title;
bool has_unfocused_tab_title;
// floating view
int32_t floating_maximum_width;