From 38c5700812c80a9e2891c6aae85b807e9836f546 Mon Sep 17 00:00:00 2001 From: Kevin Schoon Date: Thu, 1 Feb 2018 16:52:34 -0500 Subject: [PATCH] send notification when the pomo session completes --- task.go | 1 + 1 file changed, 1 insertion(+) diff --git a/task.go b/task.go index 0c94aba..82316de 100644 --- a/task.go +++ b/task.go @@ -106,6 +106,7 @@ func (t *TaskRunner) run() error { <-t.toggle } + t.notifier.Notify("Pomo", "Pomo session has completed!") t.state = COMPLETE return nil }