Skip to content

Instantly share code, notes, and snippets.

@notmyname
Created July 9, 2019 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save notmyname/824db39350e3d39496de2ea930a56f63 to your computer and use it in GitHub Desktop.
Save notmyname/824db39350e3d39496de2ea930a56f63 to your computer and use it in GitHub Desktop.
#!/bin/bash
# turn off video by default
echo "disabling automatic video"
defaults write ~/Library/Preferences/us.zoom.config.plist ZDisableVideo 1
# turn off the zoom web server
echo "turn off the zoom webserver"
lsof -i :19421 | tail -1 | cut -f2 -d' ' | xargs kill -9
# prevent it from being added again
echo "prevent the zoom webserver from being re-added"
rm -r ~/.zoomus
touch ~/.zoomus
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment