feat: replace timer icon
- change timer icon from hourglass to stopwatch
🤖
This commit is contained in:
parent
27a9ff870a
commit
14f7de631d
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