Skip to content

Instantly share code, notes, and snippets.

@allison-lara
Created October 25, 2018 18:37
Show Gist options
  • Save allison-lara/26db559478e751d8f821c580f08b1237 to your computer and use it in GitHub Desktop.
Save allison-lara/26db559478e751d8f821c580f08b1237 to your computer and use it in GitHub Desktop.
ZOOM for fish
function zoom --argument meeting
switch "$meeting"
case standup
set meetingId YOUR_STANDUP
case personal
set meetingId YOUR_PERSONAL
case ''
set meetingId YOUR_PERSONAL
case '*'
set meetingId $meeting
end
set CONF_ID 'get this from an https://zoom.us/ that works'
open "zoommtg://zoom.us/join?action=join&confno=$meetingId&confid=$CONF_ID"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment