aboutsummaryrefslogtreecommitdiffstats
path: root/include/swaybar/bar.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/swaybar/bar.h')
-rw-r--r--include/swaybar/bar.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/swaybar/bar.h b/include/swaybar/bar.h
index 50d36e76..7ec09e3e 100644
--- a/include/swaybar/bar.h
+++ b/include/swaybar/bar.h
@@ -21,6 +21,7 @@ struct bar {
21struct output { 21struct output {
22 struct window *window; 22 struct window *window;
23 struct registry *registry; 23 struct registry *registry;
24 struct output_state *state;
24 list_t *workspaces; 25 list_t *workspaces;
25#ifdef ENABLE_TRAY 26#ifdef ENABLE_TRAY
26 list_t *items; 27 list_t *items;
@@ -28,6 +29,9 @@ struct output {
28 char *name; 29 char *name;
29 int idx; 30 int idx;
30 bool focused; 31 bool focused;
32#ifdef ENABLE_TRAY
33 bool active;
34#endif
31}; 35};
32 36
33struct workspace { 37struct workspace {