Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save viliampucik/0deabfcd393d4baa98a5d14546cc23c1 to your computer and use it in GitHub Desktop.
Save viliampucik/0deabfcd393d4baa98a5d14546cc23c1 to your computer and use it in GitHub Desktop.
Fix Tearing and Flickering in Zoom Screen Sharing
# Remove "old" Intel driver in favor of the default modesetting driver
sudo pacman -R xf86-video-intel
# Disable vsync for Zoom for more smooth screen sharing experience
sudo rm /usr/bin/zoom
cat <<"EOF" > /tmp/zoom
#!/bin/sh
vblank_mode=0 /opt/zoom/ZoomLauncher "$@"
EOF
sudo install -m 0755 /tmp/zoom /usr/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment