Skip to content

Instantly share code, notes, and snippets.

@ronanrodrigo
Last active April 16, 2020 18:41
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ronanrodrigo/ab43aaef795e185b1e4cadee3786385d to your computer and use it in GitHub Desktop.
Save ronanrodrigo/ab43aaef795e185b1e4cadee3786385d to your computer and use it in GitHub Desktop.
This way, a meeting notification through Zoom Client, will appear 1 minute before meeting start. This script is necessary because through the UI settings, this custom threshold isn't available to choose (only 5, 10 and 15).
# 1. Enable Google calendar sync
# 1.1. Access https://zoom.us/profile;
# 1.2. Enable "Calendar and Contact Integration";
# 2. Quit Zoom client;
sqlite3 ~/Library/Application\ Support/zoom.us/data/zoomus.db << EOF
UPDATE zoom_kv SET value = "true" WHERE key = "com.zoom.conf.enable.remind.meeting.time";
UPDATE zoom_kv SET value = 1 WHERE key = "com.zoom.conf.threshold.to.remind.meeting.time";
SELECT key,value FROM zoom_kv WHERE key = "com.zoom.conf.enable.remind.meeting.time";
SELECT key,value FROM zoom_kv WHERE key = "com.zoom.conf.threshold.to.remind.meeting.time";
EOF
@ronanrodrigo
Copy link
Author

Screen Shot 2020-04-14 at 13 29 05

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment