From a1f306539842b104abe23e9654d32308de2dcded Mon Sep 17 00:00:00 2001 From: allusive-dev Date: Wed, 8 Nov 2023 09:50:17 +1100 Subject: Window Manager support is now applied automatically without using 'wm-support' --- src/options.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/options.c') 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; } -- cgit v1.2.3