<h1 align="center">
<a href="https://prompts.chat">
"What'd you do?" and "What're you gonna do?" dialog prompts that both pre-fill with whatever you put in for the last of either prompt at the end and start of every pomodoro work session, respectively.
Sign in to like and favorite skills
"What'd you do?" and "What're you gonna do?" dialog prompts that both pre-fill with whatever you put in for the last of either prompt at the end and start of every pomodoro work session, respectively.
NOTE: Instructions are written with the assumption that the command
python points to the python3 interpreter. If python --version reports a 2.x version, you should substitute python3 in the commands using python below.
mkdir -p ~/Projects/agaric/python git clone [email protected]:agaric/python/pomodoroprompt.git cd pomodoroprompt python -m pip install --user -r requirements.txt
cd ~/Projects/agaric/python/pomodoroprompt python -m virtualenv .venv source .venv/bin/activate pip3 install --upgrade pip wheel setuptools pip3 install -r requirements.txt
cd ~/Projects/agaric/pomodoroprompt/ source .venv/bin/activate # only if using virtual environment python pomodoroprompt.py
See the
logs/ folder for daily, one-pomodoro-at-a-time time logs.
Create file ``~/.local/bin/pomodoroprompt` with contents:
#!/bin/bash # Helper to call our pomodoro script. We actually skip the & so we can end it # with ctrl+c python ~/Projects/agaric/python/pomodoroprompt/pomodoroprompt.py
Now you can start it with
pomodoroprompt on the command line from any directory.
Too many to write down. Suggest your own:
https://gitlab.com/agaric/pomodoroprompt/-/issues
If you run
python pomodoroprompt.py and get:
File "pomodoroprompt.py", line 85 print('\r', str_minutes(to_go), sep='', end='') ^ SyntaxError: invalid syntax
You need to specify Python 3:
python3 pomodoroprompt.py