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 -a
and check if there is a.bashrc
file.
- If the
.bashrc
file does not exist, create it by runningtouch .bashrc
in the Terminal.
- Now run the command
nano .bashrc
to 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.py
with the path to wherever you stored thecloe.py
script on your system.
- Press Ctrl + X and then press Y to save the changes you made to the
.bashrc
file. Now close the Terminal.
- Open up a fresh Terminal and run the command
source ~/.bashrc
to put into effect the changes you made.
- Open the Terminal and cd to the home directory.
- Enter
ls -a
and check if there is the.zshrc
file.
- If the
.zshrc
file does not exist, create it by runningtouch .zshrc
in the Terminal.
- Now run the command
nano .zshrc
to 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.py
with the path to wherever you stored thecloe.py
script on your system.
- Press Cmd + X and then press Y to save the changes you made to the
.zshrc
file. Now close the Terminal.
- Open up a fresh Terminal and run the command
source ~/.zshrc
to put into effect the changes you made.
From now on, you can run your commands for Cloe like so:
$ cloe join <meeting-name>