https://github.com/andreif/mobtimer
A simple timer for mob programming.
https://github.com/andreif/mobtimer
Last synced: 3 months ago
JSON representation
A simple timer for mob programming.
- Host: GitHub
- URL: https://github.com/andreif/mobtimer
- Owner: andreif
- Created: 2019-03-17T18:36:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-25T13:27:49.000Z (about 7 years ago)
- Last Synced: 2024-08-10T04:17:44.527Z (almost 2 years ago)
- Language: Python
- Homepage:
- Size: 312 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mobtimer

A simple timer for mob programming in your OS status bar.

Currently supported operating systems:
* macOS
### Install
```bash
# Install with systems Python 2.7 interpreter
$ sudo /usr/bin/python -m pip install mobtimer
# or using pyenv
$ pyenv shell system
$ sudo pip install mobtimer
```
### Usage
```bash
# Start timer for 20 minute mobs
$ nohup mobtimer >/tmp/nohup.out 2>&1 &
# or for 25 minute mobs
$ nohup mobtimer 25 >/tmp/nohup.out 2>&1 &
```
```
$ mobtimer -h
usage: mobtimer [-h] [minutes]
A simple timer for mob programming.
positional arguments:
minutes Duration of each mob in minutes. Default: 20
optional arguments:
-h, --help show this help message and exit
```