Skip to content

Instantly share code, notes, and snippets.

@JosephPecoraro
Created January 14, 2010 18:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JosephPecoraro/277359 to your computer and use it in GitHub Desktop.
Save JosephPecoraro/277359 to your computer and use it in GitHub Desktop.
diff --git a/bin/pomo b/bin/pomo
index 193b7f4..84eb20a 100755
--- a/bin/pomo
+++ b/bin/pomo
@@ -228,7 +228,7 @@ command :list do |c|
list.tasks.each_with_index do |task, i|
next if options.complete && !task.complete?
next if options.incomplete && task.complete?
- say ' %s %2d. %-45s : %d minutes' % [task.complete? ? '√' : ' ', i, task.to_s, task.length]
+ say ' %s %2d. %-45s : %d minutes' % [task.complete? ? '✓' : ' ', i, task.to_s, task.length]
total += task.length
end
say ' ' * 55 + '%d minutes' % total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment