Add todo.txt pom and its dependencies

This commit is contained in:
Ethan Lane 2025-05-02 10:47:44 +01:00
parent 1e7adfa51c
commit af5315c5b9
10 changed files with 403 additions and 0 deletions

View file

@ -0,0 +1,9 @@
class TerminalNotifierLogger
def notify_start task
TerminalNotifier.notify('Pomodoro started', title: 'Pomotxt', sound: 'Glass')
end
def notify_completed task
TerminalNotifier.notify('Pomodoro completed!', title: 'Pomotxt', sound: 'Glass')
end
end