pomodoro ruby
pomodor script written in ruby:
#!/usr/bin/env ruby
STDOUT.sync = true
seconds = ARGV[0].to_i * 60
seconds.times do
print "."
sleep 1
end
system "tput bel"
Comments
Post a Comment