feat: 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 27a9ff870a
commit 14f7de631d

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