I use bionic64 frugal install.
For quite some time (many months, many versions of zoom) I have been using Zoom successfully by simply downloading the .deb file from the Zoom site and running it with the command /opt/zoom/ZoomLauncher.
The downloaded package contains two folders:
opt
usr
I simply add a wrapper script to add the library path - and then execute ZoomLauncher
WHEREAMI="$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd && echo)"
LD_LIBRARY_PATH="$WHEREAMI":$LD_LIBRARY_PATH
export LD_LIBRARY_PATH
##
exec $WHEREAMI/opt/zoom/ZoomLauncher
This has worked perfectly without any issues at all up until version 5.3.472687.1012
BUT - each version since then has a problem. When I launch the app as usual with /opt/zoom/ZoomLauncher the login screen is displayed as it should be, but none of the input fields can be seen - they are all hidden by a grey screen.
I do notice that these later versions contain the file libQt5WaylandCompositor.so.5.12.9 (and associated links). I'm not sure whether this might be part of the problem since these files were not in the earlier versions.
To illustrate - I've attached a shot of what it looks like with the latest version Version 5.4.53350.1027
All comments appreciated.