aboutsummaryrefslogtreecommitdiff
path: root/include/container.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-12-18 18:13:40 -0500
committerDrew DeVault <sir@cmpwn.com>2015-12-18 18:13:40 -0500
commit6555aad7f9234547681aeffd3fa67182cee4c193 (patch)
tree683793bfcd1cd3a5a53fa27883abde31d71ac09c /include/container.h
parent73c8a484172e08a3d6ce4f32bde96642231908f9 (diff)
parent90ff36cab8657272b6727af69bab49dba463d6ba (diff)
downloadsway-6555aad7f9234547681aeffd3fa67182cee4c193.tar.xz
Merge pull request #358 from mikkeloscar/reload-swaybg-swaybar
Reload swaybar/swaybg on config reload.
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 @@
#ifndef _SWAY_CONTAINER_H
#define _SWAY_CONTAINER_H
+#include <sys/types.h>
#include <wlc/wlc.h>
typedef struct sway_container swayc_t;
@@ -81,6 +82,11 @@ struct sway_container {
char *class;
char *app_id;
+ // Used by output containers to keep track of swaybar/swaybg child
+ // processes.
+ list_t *bar_pids;
+ pid_t bg_pid;
+
int gaps;
list_t *children;