fix: replace time icon

This commit is contained in:
Sebastian Mark 2024-11-11 19:46:01 +01:00
parent 27a9ff870a
commit 0d02883567

View file

@ -56,7 +56,7 @@ func TerminalOutput(pomodoro GoTomato.ServerMessage) string {
minutes := pomodoro.TimeLeft / 60
seconds := pomodoro.TimeLeft % 60
timerOutput = fmt.Sprintf(" %02d:%02d", minutes, seconds) + "\n"
timerOutput = fmt.Sprintf(" %02d:%02d", minutes, seconds) + "\n"
timerOutput += progressBar.ViewAs(calc_percentage(pomodoro))
}