diff options
| author | allusive-dev <[email protected]> | 2023-11-10 19:09:40 +1100 |
|---|---|---|
| committer | allusive-dev <[email protected]> | 2023-11-10 19:09:40 +1100 |
| commit | 39c7c2a863afb68b9b764c3d0568b8d6acbc5480 (patch) | |
| tree | cf3657182d5fb5dcdcc10af70117a5c9f73e264e /src/config.c | |
| parent | Switching some per wm patches to global (diff) | |
| download | compfy-1.4.3.tar.xz compfy-1.4.3.zip | |
Added 'legacy' option for wm-support for bug testing1.4.3
Diffstat (limited to 'src/config.c')
| -rw-r--r-- | src/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c index e3ea9c6..53adeec 100644 --- a/src/config.c +++ b/src/config.c @@ -791,6 +791,8 @@ enum wm_support parse_wm_support(const char *src) { return WM_SUPPORT_HERB; } else if (strcmp(src, "dwm") == 0) { return WM_SUPPORT_DWM; + } else if (strcmp(src, "legacy") == 0) { + return WM_SUPPORT_LEGACY; } return WM_SUPPORT_INVALID; } |