2020-07-05 16:55:18 +00:00
|
|
|
import cmd
|
|
|
|
import os
|
|
|
|
import time
|
|
|
|
|
|
|
|
import pytz
|
|
|
|
import zenipy
|
|
|
|
|
|
|
|
WORK_MIN = 25
|
|
|
|
SHORT_MIN = 5
|
|
|
|
LONG_MIN = 15
|
|
|
|
|
|
|
|
|
2020-07-05 17:26:38 +00:00
|
|
|
def pomodoro_prompt_plan(whatdid = ''):
|
|
|
|
whatnext = zenipy.zenipy.entry(text="What're you gonna do?", placeholder='Same thing i did last time', title='Pomodoro Prompt: Plan')
|
|
|
|
|
|
|
|
def pomodoro_prompt_report(whatnext):
|
|
|
|
whatdid = zenipy.zenipy.entry(text="What'd you do?", placeholder='What i said i would do', title='Pomodoro Prompt: Report')
|
2020-07-05 16:55:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2020-07-05 17:26:38 +00:00
|
|
|
whatnext = pomodoro_prompt_plan()
|
|
|
|
|
|
|
|
# timelog = Path('timelog.csv')
|
|
|
|
# timelog.touch(exist_ok=True)
|
|
|
|
# with timelog.open('r+') as f:
|
|
|
|
# pp = PomodoroPrompt(timelog=f)
|
2020-07-05 16:55:18 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|