fitimer
A timer to keep fit and healthy whilst having a sedentary work.
Simplicity
You are either working or taking a break. So we have those two states in the real world. I used to use pomodoro timers for this, but this is simpler and has a nicer interface for me.
Todo
- [x] setup tui
- [x] add tabs
- [x] refactor main file
- [x] replace all unwraps with expect with good error messages
- [x] add timer state
- [x] toggle timer
- [x] change timer state between work and rest
- [x] save progress into a file on toggle/change
- [x] make graph for statistics
- [ ] extend break or work
- [ ] empty the stat file on 1st of every year (when starting application)
Env vars
```bash
These are gruvbox colors
COLORDARK="#282828"
COLORGRAY="#928374"
COLORLIGHT="#fbf1c7"
COLORRED="#cc241d"
COLORGREEN="#98971a"
COLORYELLOW="#d79921"
COLORBLUE="#458588"
COLORPURPLE="#b16286"
COLORAQUA="#689d6a"
COLORORANGE="#d65d0e"
Durations are in mins
DURATIONWORK=25
DURATIONREST=5
DURATION_EXTEND=5
How frequent app should get re-rendered
increase this to reduce cpu load
TICK_RATE=1000
Statistics log file
CONFIGDIR=.config/fitimer
LOGFILE=fitimer.log
Date format used throughout the application
DATE_FORMAT="%Y-%m-%d %H:%M:%S %z"
```
Features
- desktop notifications
- customizable colors