fix: replace timer icon

- change timer icon from hourglass to stopwatch

🤖
This commit is contained in:
Sebastian Mark 2024-11-11 23:06:49 +01:00
parent 6b90db0d6c
commit 74f41f0e56

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))
}