diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2015-12-15 13:12:08 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2015-12-15 13:12:08 +0100 |
| commit | 5b9da0a273f617070de4823494d8f763096f1201 (patch) | |
| tree | e56ebb3d5a9d36793f32d575af0648fc382ad81e /include | |
| parent | 1dea7e7e9c88c21c9bc142ea7d7306e0daba7a5c (diff) | |
Implement bar option: colors {}
Diffstat (limited to 'include')
| -rw-r--r-- | include/config.h | 29 |
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 { 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; }; |
