fix: replace timer icon
- change timer icon from hourglass to stopwatch
🤖
This commit is contained in:
parent
6b90db0d6c
commit
74f41f0e56
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue