summaryrefslogtreecommitdiffstats
path: root/include/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h29
1 files changed, 18 insertions, 11 deletions
diff --git a/include/config.h b/include/config.h
index 5bb7107a..2423c9ed 100644
--- a/include/config.h
+++ b/include/config.h
@@ -99,17 +99,24 @@ struct bar_config {
99 bool binding_mode_indicator; 99 bool binding_mode_indicator;
100 bool verbose; 100 bool verbose;
101 struct { 101 struct {
102 char *background; 102 char background[8];
103 char *foreground; 103 char statusline[8];
104 char *focused_workspace_border; 104 char separator[8];
105 char *focused_workspace_bg; 105 char focused_workspace_border[8];
106 char *focused_workspace_text; 106 char focused_workspace_bg[8];
107 char *active_workspace_border; 107 char focused_workspace_text[8];
108 char *active_workspace_bg; 108 char active_workspace_border[8];
109 char *active_workspace_text; 109 char active_workspace_bg[8];
110 char *inactive_workspace_border; 110 char active_workspace_text[8];
111 char *inactive_workspace_bg; 111 char inactive_workspace_border[8];
112 char *inactive_workspace_text; 112 char inactive_workspace_bg[8];
113 char inactive_workspace_text[8];
114 char urgent_workspace_border[8];
115 char urgent_workspace_bg[8];
116 char urgent_workspace_text[8];
117 char binding_mode_border[8];
118 char binding_mode_bg[8];
119 char binding_mode_text[8];
113 } colors; 120 } colors;
114}; 121};
115 122