alfred-timer-workflow
alfred-timer-workflow copied to clipboard
Change Color of countdown and text on Menu bar
Hi, Is there any way we can change the color of menu bar text and timer when the countdown is runing? Currently it is red and it is very difficult to see.
You can change the color in the countdown_timer.1s.rb script
if remain < 5 * 60 && remain != 0
color = "blue"
elsif remain < 30 * 60 && remain != 0
color = "black"
end
To something like above.