mirror of
https://github.com/swaywm/sway.git
synced 2025-11-01 22:58:41 -04:00
Implement bar option: colors {}
This commit is contained in:
parent
cfba09a4ac
commit
8c1d56812b
3 changed files with 264 additions and 12 deletions
|
|
@ -99,17 +99,24 @@ struct bar_config {
|
|||
bool binding_mode_indicator;
|
||||
bool verbose;
|
||||
struct {
|
||||
char *background;
|
||||
char *foreground;
|
||||
char *focused_workspace_border;
|
||||
char *focused_workspace_bg;
|
||||
char *focused_workspace_text;
|
||||
char *active_workspace_border;
|
||||
char *active_workspace_bg;
|
||||
char *active_workspace_text;
|
||||
char *inactive_workspace_border;
|
||||
char *inactive_workspace_bg;
|
||||
char *inactive_workspace_text;
|
||||
char background[8];
|
||||
char statusline[8];
|
||||
char separator[8];
|
||||
char focused_workspace_border[8];
|
||||
char focused_workspace_bg[8];
|
||||
char focused_workspace_text[8];
|
||||
char active_workspace_border[8];
|
||||
char active_workspace_bg[8];
|
||||
char active_workspace_text[8];
|
||||
char inactive_workspace_border[8];
|
||||
char inactive_workspace_bg[8];
|
||||
char inactive_workspace_text[8];
|
||||
char urgent_workspace_border[8];
|
||||
char urgent_workspace_bg[8];
|
||||
char urgent_workspace_text[8];
|
||||
char binding_mode_border[8];
|
||||
char binding_mode_bg[8];
|
||||
char binding_mode_text[8];
|
||||
} colors;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue