This commit is contained in:
33KK 2025-02-10 10:35:21 -05:00 committed by GitHub
commit ff032a4bed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 110 additions and 1 deletions

View file

@ -245,6 +245,7 @@ sway_cmd bar_colors_cmd_focused_separator;
sway_cmd bar_colors_cmd_statusline;
sway_cmd bar_colors_cmd_focused_statusline;
sway_cmd bar_colors_cmd_urgent_workspace;
sway_cmd bar_colors_cmd_empty_workspace;
sway_cmd input_cmd_seat;
sway_cmd input_cmd_accel_profile;

View file

@ -394,6 +394,9 @@ struct bar_config {
char *urgent_workspace_border;
char *urgent_workspace_bg;
char *urgent_workspace_text;
char *empty_workspace_border;
char *empty_workspace_bg;
char *empty_workspace_text;
char *binding_mode_border;
char *binding_mode_bg;
char *binding_mode_text;

View file

@ -49,6 +49,7 @@ struct sway_workspace {
list_t *tiling; // struct sway_container
list_t *output_priority;
bool urgent;
bool persistent;
struct sway_workspace_state current;
};

View file

@ -88,6 +88,7 @@ struct swaybar_workspace {
bool focused;
bool visible;
bool urgent;
bool empty;
};
bool bar_setup(struct swaybar *bar, const char *socket_path);

View file

@ -65,6 +65,7 @@ struct swaybar_config {
struct box_colors active_workspace;
struct box_colors inactive_workspace;
struct box_colors urgent_workspace;
struct box_colors empty_workspace;
struct box_colors binding_mode;
} colors;