Ignore build artifact
[khome.git] / home / bin / alarm
... / ...
CommitLineData
1#! /bin/sh
2
3case "$1"
4 in "")
5 seconds=0
6 ;; *)
7 seconds="$1"
8esac
9
10$HOME/bin/snore "$seconds"
11
12printf "!!! TIMES UP !!!\n"
13
14while true
15do
16 play -q -n synth 0.25 sin 500 2> /dev/null
17 sleep 0.25
18done
This page took 0.023157 seconds and 4 git commands to generate.