aboutsummaryrefslogtreecommitdiffstats
path: root/include/config.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-08-17 20:34:53 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-08-17 20:34:53 -0400
commit780893a9338fe948cbb12c3b0ce3942ec8001ccf (patch)
tree67355e90ac69bc773427be3d5c3275980e8754c5 /include/config.h
parentRearrange main.c some more (diff)
downloadsway-780893a9338fe948cbb12c3b0ce3942ec8001ccf.tar.gz
sway-780893a9338fe948cbb12c3b0ce3942ec8001ccf.tar.zst
sway-780893a9338fe948cbb12c3b0ce3942ec8001ccf.zip
Add support for workspace [name] output [name]
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h
index c9fd374c..38e93eb8 100644
--- a/include/config.h
+++ b/include/config.h
@@ -21,10 +21,16 @@ struct sway_mode {
21 list_t *bindings; 21 list_t *bindings;
22}; 22};
23 23
24struct workspace_output {
25 char *output;
26 char *workspace;
27};
28
24struct sway_config { 29struct sway_config {
25 list_t *symbols; 30 list_t *symbols;
26 list_t *modes; 31 list_t *modes;
27 list_t *cmd_queue; 32 list_t *cmd_queue;
33 list_t *workspace_outputs;
28 struct sway_mode *current_mode; 34 struct sway_mode *current_mode;
29 35
30 // Flags 36 // Flags