summaryrefslogtreecommitdiff
path: root/alarm
diff options
context:
space:
mode:
Diffstat (limited to 'alarm')
-rwxr-xr-xalarm24
1 files changed, 24 insertions, 0 deletions
diff --git a/alarm b/alarm
new file mode 100755
index 0000000..0aa0381
--- /dev/null
+++ b/alarm
@@ -0,0 +1,24 @@
+#!/usr/bin/env ruby
+
+
+u = ARGV[0][-1]
+t = ARGV[0][0..-2].to_f
+
+if u == 'h'
+ t *= 60
+ t *= 60
+elsif u == 'm'
+ t *= 60
+elsif u == 's'
+ true
+else
+ exit
+end
+
+t = t.round(0)
+
+puts "sleeping for to #{t} seconds"
+
+sleep t
+`mplayer ~/var/alarm.mp3 &>/dev/null`
+