diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-10-21 18:24:07 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-10-21 18:24:07 -0400 |
commit | 3e2579b22cb76e098e78aec62c3c40a4bde0e394 (patch) | |
tree | add4f0b2a97d46fc8ddbd34d61656b3474592083 /include | |
parent | aef31910222702c4cef8de17487f87b910a601f3 (diff) | |
parent | 9b271573a9c5b4f55a1625435aa01de0539f3333 (diff) |
Merge pull request #197 from sce/configure_outputs_during_reload_
Configure outputs during reload
Diffstat (limited to 'include')
-rw-r--r-- | include/config.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h index 676218c8..2a8e36fa 100644 --- a/include/config.h +++ b/include/config.h @@ -6,6 +6,7 @@ #include <xkbcommon/xkbcommon.h> #include "list.h" #include "layout.h" +#include "container.h" struct sway_variable { char *name; @@ -62,6 +63,8 @@ struct sway_config { bool load_config(const char *file); bool read_config(FILE *file, bool is_active); char *do_var_replacement(char *str); +// Setup output container by applying given config +void apply_output_config(struct output_config *oc, swayc_t *output); extern struct sway_config *config; |