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 /sway/config.c | |
parent | 3f3d1ffee48b5a41910378dcd7c869397ca882d4 (diff) |
Add support for workspace [name] output [name]
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c index dabbf8e5..f06d55f8 100644 --- a/sway/config.c +++ b/sway/config.c @@ -159,6 +159,7 @@ void config_defaults(struct sway_config *config) { config->symbols = create_list(); config->modes = create_list(); config->cmd_queue = create_list(); + config->workspace_outputs = create_list(); config->current_mode = malloc(sizeof(struct sway_mode)); config->current_mode->name = NULL; config->current_mode->bindings = create_list(); |