mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
15 lines
284 B
Nix
15 lines
284 B
Nix
{
|
|
writers,
|
|
bc,
|
|
coreutils,
|
|
espeak,
|
|
}:
|
|
writers.writeDashBin "timer" ''
|
|
[ $# -eq 2 ] || {
|
|
echo "Usage: $0 TIME MESSAGE" 1>&2
|
|
exit 1
|
|
}
|
|
echo "sleeping $time seconds, then saying: $2"
|
|
${coreutils}/bin/sleep "$time" && ${espeak}/bin/espeak -v german-mbrola-6 "$2"
|
|
''
|