diff --git a/pomodoroprompt.py b/pomodoroprompt.py index 391f720..fdebb7e 100644 --- a/pomodoroprompt.py +++ b/pomodoroprompt.py @@ -20,11 +20,8 @@ def pomodoro_prompt_plan(whatdid = ''): """ Ask about what task will be worked on (showing last thing worked on) """ text = "What're you gonna do?" - # Instead of repeating this, i'd prefer a clean interface with the ability to get back - # the placeholder text with 'esc' or up arrow or something. But i'm not up for building - # my own interface, so here's what we get. NOTE: If we can do system notifications that - # when clicked will focus the terminal running pomodoro prompt, that would be even better - # than these pop-up GUI notifications/text entry. + # NOTE: If we can do system notifications that when clicked will focus the terminal + # running pomodoro prompt, that might be even better than the pop-up GUI text entry. whatnext = prompt_window.prompt(prompt=text, task=whatdid) # Pressing cancel returns None, but we want to just treat it as an empty string. if whatnext is None: