diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2016-03-28 15:16:55 +0200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2016-03-28 15:16:55 +0200 |
| commit | 5b7aa4b40c023a25c2849f44a132dd21637cd4f7 (patch) | |
| tree | 6e6ed0fd86ac5bfff03062409d7eeb6c1e18775c /include/config.h | |
| parent | 257b03d351fa46fe81dfa4008613765aea46f363 (diff) | |
Add default border colors
Diffstat (limited to 'include/config.h')
| -rw-r--r-- | include/config.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h index 4bcf55e8..5a58c07c 100644 --- a/include/config.h +++ b/include/config.h @@ -148,6 +148,14 @@ struct bar_config { } colors; }; +struct border_colors { + uint32_t border; + uint32_t background; + uint32_t text; + uint32_t indicator; + uint32_t child_border; +}; + /** * The configuration struct. The result of loading a config file. */ @@ -187,6 +195,16 @@ struct sway_config { list_t *config_chain; const char *current_config; + + // border colors + struct { + struct border_colors focused; + struct border_colors focused_inactive; + struct border_colors unfocused; + struct border_colors urgent; + struct border_colors placeholder; + uint32_t background; + } border_colors; }; /** |
