From 9dbd5bb077898e552d8f4f73ab366b21fc177dc1 Mon Sep 17 00:00:00 2001 From: Abhishek Keshri Date: Mon, 4 Nov 2024 01:36:14 +0530 Subject: [PATCH] fix: use correct refresh rate var in pomodoro --- scripts/pomodoro.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pomodoro.sh b/scripts/pomodoro.sh index ff200af..6592b1a 100755 --- a/scripts/pomodoro.sh +++ b/scripts/pomodoro.sh @@ -16,8 +16,8 @@ if [ -f "$POMODORO_SCRIPT" ]; then fi main() { + RATE=$(get_tmux_option "@tmux2k-refresh-rate" 5) pomodoro_status="$(pomodoro_status)" - RATE=$(get_tmux_option "@tmux2k-ping-rate" 5) sleep "$RATE" }