dotfiles/.todo.actions.d/pom/lib/terminal_notifier_logger.rb

9 lines
265 B
Ruby

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