diff options
| author | allusive-dev <[email protected]> | 2023-11-08 09:50:17 +1100 |
|---|---|---|
| committer | allusive-dev <[email protected]> | 2023-11-08 09:50:17 +1100 |
| commit | a1f306539842b104abe23e9654d32308de2dcded (patch) | |
| tree | 39309626992e42a085b0601fdbc514efbec688d0 /src/config_libconfig.c | |
| parent | Update README.md (diff) | |
| download | compfy-a1f306539842b104abe23e9654d32308de2dcded.tar.xz compfy-a1f306539842b104abe23e9654d32308de2dcded.zip | |
Window Manager support is now applied automatically without using 'wm-support'
Diffstat (limited to 'src/config_libconfig.c')
| -rw-r--r-- | src/config_libconfig.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config_libconfig.c b/src/config_libconfig.c index 1b81a50..9b537b9 100644 --- a/src/config_libconfig.c +++ b/src/config_libconfig.c @@ -601,7 +601,8 @@ char *parse_config_libconfig(options_t *opt, const char *config_file, bool *shad log_fatal("Invalid window manager name passed %s", sval); goto err; } - opt->support_for_wm = wm; + log_warn("wm-support is deprecated. Your window manager will now be detected and have patches applied automatically"); + opt->support_for_wm = WM_SUPPORT_NONE; } // --opacity-rule parse_cfg_condlst_opct(opt, &cfg, "opacity-rule"); |