From 4fd67f841de3443a04a3c227c9ae46e7d6f52961 Mon Sep 17 00:00:00 2001 From: Steve McKinney Date: Sun, 16 Dec 2012 09:58:08 -0500 Subject: [PATCH] Fixes tmux status bar color for tasks greater than 6 --- lib/pomo/task.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pomo/task.rb b/lib/pomo/task.rb index edf5c4a..c883afe 100644 --- a/lib/pomo/task.rb +++ b/lib/pomo/task.rb @@ -147,7 +147,7 @@ def tmux_time(time) "#{time}:00" when 1..5 "#[default]#[fg=red]#{time}:00#[default]" - when 6..00 + when 6..100 "#[default]#[fg=green]#{time}:00#[default]" end end