mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 02:47:46 +03:00
config/output: Introduce apply_output_configs
Introduce apply_output_configs, which applies the specified matched output configs as a single backend commit. Reimplement apply_output_config_to_outputs using apply_output_configs.
This commit is contained in:
parent
e2f3ebad8c
commit
3e03eb3a01
2 changed files with 135 additions and 24 deletions
|
@ -291,6 +291,14 @@ struct output_config {
|
|||
char *background_fallback;
|
||||
};
|
||||
|
||||
/**
|
||||
* An output config pre-matched to an output
|
||||
*/
|
||||
struct matched_output_config {
|
||||
struct sway_output *output;
|
||||
struct output_config *config;
|
||||
};
|
||||
|
||||
/**
|
||||
* Stores size of gaps for each side
|
||||
*/
|
||||
|
@ -684,6 +692,9 @@ void merge_output_config(struct output_config *dst, struct output_config *src);
|
|||
|
||||
bool apply_output_config(struct output_config *oc, struct sway_output *output);
|
||||
|
||||
bool apply_output_configs(struct matched_output_config *configs,
|
||||
size_t configs_len, bool test_only);
|
||||
|
||||
bool test_output_config(struct output_config *oc, struct sway_output *output);
|
||||
|
||||
struct output_config *store_output_config(struct output_config *oc);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue