diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-02-27 16:18:50 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2016-02-27 16:18:50 -0500 |
commit | 3453910c3e887be900c69394b738e34d9d8ba095 (patch) | |
tree | 28e0d8d72557ac57a2f9aed5c94818c8ba20e97f /include/bar/config.h | |
parent | 5ff3fb1c0472d974f74c0329a10895cc76c83a55 (diff) | |
parent | 67bbcceba1433e41b5edfca32532b7d55a39a395 (diff) |
Merge pull request #492 from mikkeloscar/swaybar-multi-output
Display single swaybar on multiple outputs
Diffstat (limited to 'include/bar/config.h')
-rw-r--r-- | include/bar/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/bar/config.h b/include/bar/config.h index 508b9c42..fc938c38 100644 --- a/include/bar/config.h +++ b/include/bar/config.h @@ -4,6 +4,8 @@ #include <stdint.h> #include <stdbool.h> +#include "list.h" + /** * Colors for a box with background, border and text colors. */ @@ -25,6 +27,8 @@ struct config { bool strip_workspace_numbers; bool binding_mode_indicator; bool workspace_buttons; + bool all_outputs; + list_t *outputs; int height; |