From cbd7cef3cfe6da13d0a1bb2055446cc63fac429d Mon Sep 17 00:00:00 2001 From: Sebastian Mark Date: Mon, 11 Nov 2024 23:06:49 +0100 Subject: [PATCH] feat: replace timer icon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - change timer icon from hourglass to stopwatch 🤖 --- cmd/client/helper/terminal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/client/helper/terminal.go b/cmd/client/helper/terminal.go index 49049c2..9cd5cea 100644 --- a/cmd/client/helper/terminal.go +++ b/cmd/client/helper/terminal.go @@ -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)) }