The minimized window steals the focus and you can't do anything while the window is minimized.
If the window is maximized you have to manually corner it somewhere (at least wasting 25% of your screen).
But! I found a way to use zoom while letting you work while you don't see the screen.
It's a tiny shellscript that pinpoints the Zoom full window, and then relegates it to a 1 pixel window on the top of the screen. Very simple, but it works wonders for me.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
num=$(ratpoison -c windows | grep 'Zoom Meeting' | grep -v grep | sed -e 's/[^0-9].*//') | |
$num && exit | |
ratpoison -c only -c "select $num" -c "vsplit 1" -c focus |