Give up on title dialogs in popOS (grr) and put title in text

This commit is contained in:
benjamin melançon 2020-11-07 21:13:06 -05:00
parent 36b300f393
commit 8b4e5db9a5

View file

@ -18,8 +18,8 @@ QUIET = True
def pomodoro_prompt_plan(whatdid = ''): def pomodoro_prompt_plan(whatdid = ''):
""" Ask about what task will be worked on (showing last thing worked on) """ Ask about what task will be worked on (showing last thing worked on)
""" """
title = "What're you gonna do?" text = "What're you gonna do?"
text = '' title = ''
# Instead of repeating this, i'd prefer a clean interface with the ability to get back # 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 # 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 # my own interface, so here's what we get. NOTE: If we can do system notifications that
@ -36,8 +36,8 @@ def pomodoro_prompt_plan(whatdid = ''):
def pomodoro_prompt_report(whatnext): def pomodoro_prompt_report(whatnext):
""" Ask what task was completed, showing the last task claimed to be being worked on """ Ask what task was completed, showing the last task claimed to be being worked on
""" """
title = "What'd you do?" text = "What'd you do?"
text = '' title = ''
if whatnext: if whatnext:
text = "\n\n(What you said you'd do: " + whatnext + ')\n' text = "\n\n(What you said you'd do: " + whatnext + ')\n'
whatdid = zenipy.zenipy.entry(text=text, placeholder=whatnext, title=title) whatdid = zenipy.zenipy.entry(text=text, placeholder=whatnext, title=title)