Sebastian Mark
deff8f3554
- hide cursor at the start of the client
- ensure cursor is shown again after client execution
🤖
45 lines
963 B
Go
45 lines
963 B
Go
package notifications
|
|
|
|
import (
|
|
"fmt"
|
|
"git.smsvc.net/pomodoro/ChronoTomato/internal/shared"
|
|
"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("space: start/pause/resume • s: stop • r: reset pomodoro • q: quit")
|
|
}
|