Effortlessly save and join Zoom meetings using simple aliases
- Save Zoom meeting details with an alias.
- Join a Zoom meeting using the alias.
- Supports macOS, Linux, and Windows.
- Go (version 1.16+)
-
Clone the repository:
git clone https://github.com/dabarov/zoom-joiner.git cd zoom-joiner -
Build the project:
go build -o zoom-joiner
-
(Optional) Move the binary to your PATH:
sudo mv zoom-joiner /usr/local/bin/
- Go to the Releases page.
- Download the appropriate binary for your operating system:
- zoom-joiner-darwin-amd64 for macOS
- zoom-joiner-linux-amd64 for Linux
- zoom-joiner-windows-amd64.exe for Windows
-
Once downloaded, make the binary executable (if necessary):
chmod +x zoom-joiner-darwin-amd64 # For macOS or Linux -
Move the binary to a directory included in your PATH to run it from anywhere:
sudo mv zoom-joiner-darwin-amd64 /usr/local/bin/zoom-joiner # Example for macOSReplace /usr/local/bin/zoom-joiner with the appropriate directory for your system.
To add a meeting, use the add command followed by the alias, meeting number, and password:
zoom-joiner add [alias] [meeting_number] [password]Example:
zoom-joiner add team_meeting 123456789 12345To join a meeting, use the join command followed by the alias:
zoom-joiner join [alias]Example:
zoom-joiner join team_meetingThis will open the Zoom meeting in your default browser or Zoom application.