summaryrefslogtreecommitdiffstats
path: root/include/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h
index d591daf2..35797ac2 100644
--- a/include/config.h
+++ b/include/config.h
@@ -92,6 +92,13 @@ struct workspace_output {
92 char *workspace; 92 char *workspace;
93}; 93};
94 94
95struct pid_workspace {
96 pid_t *pid;
97 char *workspace;
98};
99
100void free_pid_workspace(struct pid_workspace *pw);
101
95struct bar_config { 102struct bar_config {
96 /** 103 /**
97 * One of "dock", "hide", "invisible" 104 * One of "dock", "hide", "invisible"
@@ -175,6 +182,7 @@ struct sway_config {
175 list_t *bars; 182 list_t *bars;
176 list_t *cmd_queue; 183 list_t *cmd_queue;
177 list_t *workspace_outputs; 184 list_t *workspace_outputs;
185 list_t *pid_workspaces;
178 list_t *output_configs; 186 list_t *output_configs;
179 list_t *input_configs; 187 list_t *input_configs;
180 list_t *criteria; 188 list_t *criteria;