Created
October 25, 2018 18:37
-
-
Save allison-lara/26db559478e751d8f821c580f08b1237 to your computer and use it in GitHub Desktop.
ZOOM for fish
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
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