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/options.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/options.c')
| -rw-r--r-- | src/options.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/options.c b/src/options.c index c98a77e..e2fcd42 100644 --- a/src/options.c +++ b/src/options.c @@ -805,7 +805,8 @@ bool get_cfg(options_t *opt, int argc, char *const *argv, bool shadow_enable, if (wm >= WM_SUPPORT_INVALID) { log_warn("Invalid window manager %s, ignoring.", optarg); } else { - 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; } break; } |