diff options
| author | allusive-dev <[email protected]> | 2023-09-28 10:20:49 +1000 |
|---|---|---|
| committer | allusive-dev <[email protected]> | 2023-09-28 10:20:49 +1000 |
| commit | e24b8ed0b48138ceacb7715b9e267ee57db76535 (patch) | |
| tree | c1d5d6a7d49d8ba18b16ba7720e225c58096c8a2 /src/config_libconfig.c | |
| parent | Update README.md (diff) | |
| download | compfy-0.3.tar.xz compfy-0.3.zip | |
Diffstat (limited to 'src/config_libconfig.c')
| -rw-r--r-- | src/config_libconfig.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config_libconfig.c b/src/config_libconfig.c index 7d266cd..4bb4cbf 100644 --- a/src/config_libconfig.c +++ b/src/config_libconfig.c @@ -616,6 +616,10 @@ char *parse_config_libconfig(options_t *opt, const char *config_file, bool *shad lcfg_lookup_bool(&cfg, "animation-clamping", &opt->animation_clamping); // --focus-exclude parse_cfg_condlst(&cfg, &opt->focus_blacklist, "focus-exclude"); + // animation exclude + parse_cfg_condlst(&cfg, &opt->animation_open_blacklist, "animation-open-exclude"); + // animation exclude + parse_cfg_condlst(&cfg, &opt->animation_unmap_blacklist, "animation-unmap-exclude"); // --invert-color-include parse_cfg_condlst(&cfg, &opt->invert_color_list, "invert-color-include"); // --blur-background-exclude |