summaryrefslogtreecommitdiffstats
path: root/include/container.h
diff options
context:
space:
mode:
authorLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2015-12-18 17:43:03 +0100
committerLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2015-12-18 18:27:44 +0100
commitede27eabc53dc926aa1932c2a58c06def1000f86 (patch)
tree4d734e99a6163d846423c79a2d7ff04070018e78 /include/container.h
parentswaybar: ipc_update_ws: Fix memory corruption. (diff)
downloadsway-ede27eabc53dc926aa1932c2a58c06def1000f86.tar.gz
sway-ede27eabc53dc926aa1932c2a58c06def1000f86.tar.zst
sway-ede27eabc53dc926aa1932c2a58c06def1000f86.zip
Reload swaybar/swaybg on config reload.
This works by tracking the pids of the child processes in the related output container and terminating the processes and spawning new ones on a config reload. Should solve: #347
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;