eeeb841a15
to readme
40 lines
939 B
Markdown
40 lines
939 B
Markdown
# Pomodoro Prompt
|
|
|
|
"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.
|
|
|
|
## Installation
|
|
|
|
```
|
|
mkdir -p ~/Projects/agaric/
|
|
git clone git@gitlab.com:agaric/pomodoroprompt.git
|
|
cd pomodoroprompt
|
|
pip3 install -r requirements.txt
|
|
```
|
|
|
|
## Usage
|
|
|
|
```
|
|
cd ~/Projects/agaric/pomodoroprompt/
|
|
python3 pomodoroprompt.py
|
|
```
|
|
|
|
See the `logs/` folder for daily, one-pomodoro-at-a-time time logs.
|
|
|
|
## Desired improvements
|
|
|
|
Too many to write down. Suggest your own:
|
|
|
|
https://gitlab.com/agaric/pomodoroprompt/-/issues
|
|
|
|
## Troubleshooting
|
|
|
|
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: `python pomodoroprompt.py`
|