Install Guide
Installing and using Pomo is relatively easy. However, version v1.0.0 only supports macOS and Linux computer systems.
- Ensure that you have Python installed on your computer system. You can check if you have Python installed by opening your terminal and typing
python3 --version
. - Download the latest release of Pomo from https://github.com/narlock/pomo/releases, this will be in a ZIP file.
- Extract the ZIP file to a location on your computer. The ZIP file will contain the bash scripts for installing (
install.sh
) and uninstalling (uninstall.sh
) the program. The “mark” directory contains the source code for the version of Pomo. - Allow executing the install script by opening the terminal in the directory that contains the install script and type:
chmod +x install.sh
. - Next, run the install script by entering
./install.sh
After installing, we will see a message that reads “🚀 Installation complete! Use ‘pomo’ to begin.”
What does the install script do?
The install script starts by making the directory to put all of the project’s information. This includes the install script, uninstall script, and source code. The directory that will be made to support Pomo operations is located at $HOME/Documents/narlock/pomo
. Here you will find all of the code mentioned. When you run pomo
in your terminal, you will also see the settings.json
file stored at this location.
The install script also creates a simple bash script to be ran when pomo
is typed into the terminal. The functionality is stored in /usr/local/bin/pomo
and will contain a wrapper that will execute the python3
command to run the main file:
#!/bin/bash
python3 "/Users/narlock/Documents/narlock/pomo/pomo/main.py" "$@"
I want to uninstall Pomo
If you choose not to want Pomo on your computer system anymore, you can simply uninstall it by running the uninstall.sh
script. Give permission using chmod +x uninstall.sh
similar to the install script, then run using ./uninstall.sh
.