I've found that some programs hard-code the Alt-Click as a hotkey, but this triggers the window resizing in berrywm and doesn't pass the mouse event on.
A specific example is Purr-Data, you need to hold Alt and left click in order to use the UI (so its currently impossible to use this program in berrywm)
I've just changed my local version to use Super+Alt+Click to be resize rather than Alt+Click,
in config.h:
- old:
#define RESIZE_MASK Mod1Mask
- new:
#define RESIZE_MASK (Mod1Mask | Mod4Mask)
If it is already possible to change this with berryc then ignore me!
Thanks,
Pat