Sebastian Mark
ef0f940343
- add color package for improved terminal output
- update terminal output to use colored text
🤖
45 lines
921 B
Go
45 lines
921 B
Go
package notifications
|
|
|
|
import (
|
|
"ChronoTomato/internal/shared"
|
|
"fmt"
|
|
"github.com/fatih/color"
|
|
"strings"
|
|
)
|
|
|
|
func TerminalOutput() {
|
|
var timerOutput string
|
|
|
|
pomodoro := &shared.ServerMessage
|
|
|
|
fmt.Print("\033[H\033[2J") // Clears the screen
|
|
|
|
color.Blue("Work: %d | Break: %d | Longbreak: %d\n\n",
|
|
pomodoro.PomodoroSettings.Work/60,
|
|
pomodoro.PomodoroSettings.ShortBreak/60,
|
|
pomodoro.PomodoroSettings.LongBreak/60,
|
|
)
|
|
fmt.Printf("Session: %d/%d\n",
|
|
pomodoro.Session,
|
|
pomodoro.PomodoroSettings.Sessions,
|
|
)
|
|
fmt.Printf("▶ %s\n",
|
|
pomodoro.Mode,
|
|
)
|
|
|
|
switch pomodoro.Mode {
|
|
case "Idle":
|
|
timerOutput = ""
|
|
default:
|
|
minutes := pomodoro.TimeLeft / 60
|
|
seconds := pomodoro.TimeLeft % 60
|
|
|
|
timerOutput = fmt.Sprintf("⏳ %02d:%02d", minutes, seconds)
|
|
}
|
|
|
|
fmt.Printf(timerOutput)
|
|
|
|
//footer
|
|
fmt.Printf(strings.Repeat("\n", 3))
|
|
color.White("s: start • space: pause/resume • r: stop • q: quit")
|
|
}
|