diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-08-17 20:34:53 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-08-17 20:34:53 -0400 |
commit | 780893a9338fe948cbb12c3b0ce3942ec8001ccf (patch) | |
tree | 67355e90ac69bc773427be3d5c3275980e8754c5 /include/config.h | |
parent | 3f3d1ffee48b5a41910378dcd7c869397ca882d4 (diff) |
Add support for workspace [name] output [name]
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 6 |
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 { list_t *bindings; }; +struct workspace_output { + char *output; + char *workspace; +}; + struct sway_config { list_t *symbols; list_t *modes; list_t *cmd_queue; + list_t *workspace_outputs; struct sway_mode *current_mode; // Flags |