Sebastian Mark
8a0ef32c91
- implement TUI in bubbletea - split components into separate files - remove now unused functions - restructure files
39 lines
1.1 KiB
Go
39 lines
1.1 KiB
Go
package helper
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/gen2brain/beeep"
|
|
|
|
GoTomato "git.smsvc.net/pomodoro/GoTomato/pkg/models"
|
|
)
|
|
|
|
// Send desktop notifications on the start of each segment
|
|
func DesktopNotifications(pomodoro GoTomato.ServerMessage) {
|
|
var (
|
|
duration int
|
|
notification string
|
|
)
|
|
|
|
mode := pomodoro.Mode
|
|
session := pomodoro.Session
|
|
sessions := pomodoro.Settings.Sessions
|
|
|
|
switch mode {
|
|
case "Work":
|
|
duration = pomodoro.Settings.Work
|
|
notification = fmt.Sprintf("Session %d/%d: %s %0.f minutes", session, sessions, mode, float32(duration)/60)
|
|
case "ShortBreak":
|
|
duration = pomodoro.Settings.ShortBreak
|
|
notification = fmt.Sprintf("Session %d/%d: Take a %0.f minute break", session, sessions, float32(duration)/60)
|
|
case "LongBreak":
|
|
duration = pomodoro.Settings.LongBreak
|
|
notification = fmt.Sprintf("Long Break: Take a %0.f minute break", float32(duration)/60)
|
|
case "End":
|
|
duration = 0
|
|
notification = fmt.Sprintf("Pomodoro sessions complete! Great job! 🎉")
|
|
}
|
|
|
|
if pomodoro.TimeLeft == duration { // start of segment
|
|
beeep.Alert("🍅 Pomodoro Timer", notification, "")
|
|
}
|
|
}
|