summaryrefslogtreecommitdiffstats
path: root/include/bar/config.h
diff options
context:
space:
mode:
authorLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-02-22 17:27:17 +0100
committerLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-02-27 22:12:35 +0100
commit6d57f03028b4b32b4377d869be8de9a7e6aa55ee (patch)
tree786e749fd53707e36e4b9927516f8375857eec87 /include/bar/config.h
parentMake protocol specifications follow the DTD (diff)
downloadsway-6d57f03028b4b32b4377d869be8de9a7e6aa55ee.tar.gz
sway-6d57f03028b4b32b4377d869be8de9a7e6aa55ee.tar.zst
sway-6d57f03028b4b32b4377d869be8de9a7e6aa55ee.zip
Make single bar handle multiple outputs
Diffstat (limited to 'include/bar/config.h')
-rw-r--r--include/bar/config.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/bar/config.h b/include/bar/config.h
index 508b9c42..dfad0ba4 100644
--- a/include/bar/config.h
+++ b/include/bar/config.h
@@ -4,6 +4,8 @@
4#include <stdint.h> 4#include <stdint.h>
5#include <stdbool.h> 5#include <stdbool.h>
6 6
7#include "list.h"
8
7/** 9/**
8 * Colors for a box with background, border and text colors. 10 * Colors for a box with background, border and text colors.
9 */ 11 */
@@ -25,6 +27,7 @@ struct config {
25 bool strip_workspace_numbers; 27 bool strip_workspace_numbers;
26 bool binding_mode_indicator; 28 bool binding_mode_indicator;
27 bool workspace_buttons; 29 bool workspace_buttons;
30 list_t *outputs;
28 31
29 int height; 32 int height;
30 33