summaryrefslogtreecommitdiffstats
path: root/include/container.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/container.h')
-rw-r--r--include/container.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/container.h b/include/container.h
index 9a67a689..d76160de 100644
--- a/include/container.h
+++ b/include/container.h
@@ -1,5 +1,6 @@
1#ifndef _SWAY_CONTAINER_H 1#ifndef _SWAY_CONTAINER_H
2#define _SWAY_CONTAINER_H 2#define _SWAY_CONTAINER_H
3#include <sys/types.h>
3#include <wlc/wlc.h> 4#include <wlc/wlc.h>
4typedef struct sway_container swayc_t; 5typedef struct sway_container swayc_t;
5 6
@@ -81,6 +82,11 @@ struct sway_container {
81 char *class; 82 char *class;
82 char *app_id; 83 char *app_id;
83 84
85 // Used by output containers to keep track of swaybar/swaybg child
86 // processes.
87 list_t *bar_pids;
88 pid_t bg_pid;
89
84 int gaps; 90 int gaps;
85 91
86 list_t *children; 92 list_t *children;