diff options
| author | allusive-dev <[email protected]> | 2023-11-03 13:07:38 +1100 |
|---|---|---|
| committer | allusive-dev <[email protected]> | 2023-11-03 13:07:38 +1100 |
| commit | 065ca0ccd1cf06a821e7273c4c922d9a9156f518 (patch) | |
| tree | 74ee093f12e668c2447408315f8f6cce03698242 /src/config.c | |
| parent | sample config update (diff) | |
| download | compfy-065ca0ccd1cf06a821e7273c4c922d9a9156f518.tar.xz compfy-065ca0ccd1cf06a821e7273c4c922d9a9156f518.zip | |
DWM inactive-opacity patches1.2.5
Diffstat (limited to 'src/config.c')
| -rw-r--r-- | src/config.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/config.c b/src/config.c index d0724e8..754a7d3 100644 --- a/src/config.c +++ b/src/config.c @@ -785,8 +785,10 @@ enum open_window_animation parse_open_window_animation(const char *src) { enum wm_support parse_wm_support(const char *src) { if (strcmp(src, "none") == 0) { return WM_SUPPORT_NONE; - }else if (strcmp(src, "awesome") == 0) { + } else if (strcmp(src, "awesome") == 0) { return WM_SUPPORT_AWESOME; + } else if (strcmp(src, "dwm") == 0) { + return WM_SUPPORT_DWM; } return WM_SUPPORT_INVALID; } |