9 lines
265 B
Ruby
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
|