Cloe is a CLI tool to join Zoom meetings with the Zoom Desktop Client. Cloe also makes it convenient to join recurring meetings using a unique meeting name, so that you don't have to type in the meeting ID and password every time.
This tool works on Linux, macOS, and Windows.
Requirements: Python 3.5 or higher is required to run cloe.py.
Refer to the User Guide for instructions on how to use Cloe.
Using an alias makes it a lot more convenient to write out the commands.
For instance, instead of typing:
$ python3 path/to/cloe.py join my-meeting
You can just type in:
$ cloe join my-meeting
- Open the Terminal and cd to the home directory.
- Enter
ls -aand check if there is a.bashrcfile.
- If the
.bashrcfile does not exist, create it by runningtouch .bashrcin the Terminal.
- Now run the command
nano .bashrcto open up the file in the nano editor.
- On a fresh line at the end of the file, add the line
alias cloe='python3 path/to/cloe.py'. Make sure to replacepath/to/cloe.pywith the path to wherever you stored thecloe.pyscript on your system.
- Press Ctrl + X and then press Y to save the changes you made to the
.bashrcfile. Now close the Terminal.
- Open up a fresh Terminal and run the command
source ~/.bashrcto put into effect the changes you made.
- Open the Terminal and cd to the home directory.
- Enter
ls -aand check if there is the.zshrcfile.
- If the
.zshrcfile does not exist, create it by runningtouch .zshrcin the Terminal.
- Now run the command
nano .zshrcto open up the file in the nano editor.
- On a fresh line at the end of the file, add the line
alias cloe='python3 path/to/cloe.py'. Make sure to replacepath/to/cloe.pywith the path to wherever you stored thecloe.pyscript on your system.
- Press Cmd + X and then press Y to save the changes you made to the
.zshrcfile. Now close the Terminal.
- Open up a fresh Terminal and run the command
source ~/.zshrcto put into effect the changes you made.
From now on, you can run your commands for Cloe like so:
$ cloe join <meeting-name>