@@ 10,17 10,20 @@ TASKS = [
'Workrave',
'Bril',
'Methylfenidaat',
+ 'Start Pomodoro timer',
+ 'Quickly close all tabs, moving pages to to-read as required',
'''Tell Teams standup what I'm working on today''',
'Gather todos into workplan',
+ '- Open todo.txt',
'- Open worklog',
- '- Read `todo.txt` > worklog',
- '- Read at least 5 mails (Anchormen) > worklog',
- '- Check diary 14 days > worklog',
- '- Read my notebook’s todo list > worklog',
- '- Read at least 5 mails (Gmail) > worklog',
+ '- Read old worklog > todo.txt',
+ '- Read at least 5 mails (Anchormen) > todo.txt',
+ '- Check diary 14 days > todo.txt',
+ '- Read my notebook’s todo list > todo.txt',
+ '- Read at least 5 mails (Gmail) > todo.txt',
'Check project statuses',
- '- Status of HPP project > worklog',
- 'Plan day: distribute TODOs over hours'
+ '- Status of HPP project > todo.txt',
+ 'Plan day: put TODOs into worklog, distribute over hours'
]
@unique
@@ 125,6 128,7 @@ def view(state, t, styles) -> None:
if state['debug'] is Debug.Show:
t.addstr(i + 2, 0, pformat(state), styles['plain'])
elif state['debug'] is Debug.PleaseHide:
+ # In PleaseHide mode, overwrite the displayed debug info with spaces
t.addstr(i + 2, 0, re.sub('.', ' ', pformat(state)), styles['plain'])
elif state['debug'] is Debug.Hidden:
pass