From 1f486a03d3f9e796979ef1da9b948c98670b2b2f Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Thu, 2 Jun 2022 14:50:37 +0200 Subject: [PATCH] Add timestamps to pomodoro timer --- bin/pomodoro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pomodoro b/bin/pomodoro index f9d8a77..93792bd 100755 --- a/bin/pomodoro +++ b/bin/pomodoro @@ -4,7 +4,7 @@ say() { if [ -n "$DISPLAY" ]; then notify-send "Pomodoro 🍅" "$1" fi - echo "🍅 Pomodoro: $1" + printf "%s -- 🍅 Pomodoro: %s\n" "$(date +'%H:%M:%S')" "$1" } while true