Created
April 22, 2018 15:55
-
-
Save wnds/64a41f891a5a6abe1c58f346061e5b95 to your computer and use it in GitHub Desktop.
Ruby Gist for bitbar countdown timer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
# <bitbar.title>Countdown Timer</bitbar.title> | |
# <bitbar.version>v1.0</bitbar.version> | |
# <bitbar.author>Chris Yuen</bitbar.author> | |
# <bitbar.author.github>kizzx2</bitbar.author.github> | |
# <bitbar.desc>Simple countdown timer. Set the time by calling the script from terminal.</bitbar.desc> | |
# <bitbar.dependencies>ruby</bitbar.dependencies> | |
# <bitbar.image>https://raw.githubusercontent.com/kizzx2/bitbar-countdown-timer/master/screenshot.png</bitbar.image> | |
# <bitbar.abouturl>http://github.com/kizzx2/bitbar-countdown-timer</bitbar.abouturl> | |
fn = File.join(File.dirname($0), '.countdown') | |
if ARGV.count == 0 | |
task = nil | |
if File.file?(fn) | |
lines = File.read(fn).lines | |
time = Time.at(lines.first.to_i) | |
task = lines[1] if lines.count > 1 | |
else | |
time = Time.at(0) | |
end | |
remain = time - Time.now | |
if remain.to_i == 0 | |
system %(osascript -e 'display notification "Times up!" with title "Times up!" sound name "Glass"') | |
end | |
remain = 0 if remain < 0 | |
color = "#436EEE" | |
if remain < 15 * 60 && remain != 0 | |
color = "red" | |
elsif remain < 30 * 60 && remain != 0 | |
color = "orange" | |
end | |
years = (remain / (3600 * 24 * 365)).to_i | |
remain -= years * 3600 * 24 * 365 | |
mon = (remain / (3600 * 24 * 30)).to_i | |
remain -= mon * 3600 * 24 * 30 | |
if mon == 12 then | |
years += 1 | |
mon = 0 | |
end | |
d = (remain / (3600 * 24)).to_i | |
remain -= d * 3600 * 24 | |
h = (remain / 3600).to_i | |
remain -= h * 3600 | |
m = (remain / 60).to_i | |
remain -= m * 60 | |
s = remain | |
str = "" | |
str << "#{task}: " if task | |
#base = "%02i:%02i" | |
base = "" | |
invar = Array.new | |
if d != 0 then | |
base = "%02i D " + base | |
invar.unshift(d) | |
end | |
if mon != 0 then | |
base = "%02i M " + base | |
invar.unshift(mon) | |
end | |
if years != 0 then | |
base = "%02i Y " + base | |
invar.unshift(years) | |
end | |
#invar.push(h,m) | |
str << base % invar | |
str << "| color=#{color}" if color | |
puts str | |
else | |
case ARGV.first | |
when '0' | |
time = 0 | |
when /^(\d+)s$/ | |
time = Time.now + $1.to_i | |
when /^(\d+)m$/ | |
time = Time.now + $1.to_i * 60 | |
when /^(\d+)h$/ | |
time = Time.now + $1.to_i * 3600 | |
when /^(\d+)d$/ | |
time = Time.now + $1.to_i * 3600 * 24 | |
when /^(\d+)y$/ | |
time = Time.now + $1.to_i * 3600 * 24 * 365 | |
when /^(\d+)t$/ | |
time = $1.to_i | |
else | |
puts "Error: Invalid argument '#{ARGV.first}'" | |
exit 1 | |
end | |
str = "" | |
str << time.to_i.to_s | |
if ARGV.count > 1 | |
str << "\n" | |
str << ARGV.drop(1).join(' ') | |
end | |
File.write(fn, str) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment