alfred-timer-workflow icon indicating copy to clipboard operation
alfred-timer-workflow copied to clipboard

Change Color of countdown and text on Menu bar

Open getbiks opened this issue 4 years ago • 1 comments

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.

getbiks avatar Feb 08 '21 18:02 getbiks

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.

Caffa avatar Jan 05 '22 06:01 Caffa