summaryrefslogtreecommitdiffstats
path: root/modules/zeit
diff options
context:
space:
mode:
Diffstat (limited to 'modules/zeit')
-rwxr-xr-xmodules/zeit19
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/zeit b/modules/zeit
new file mode 100755
index 00000000..340d6fce
--- /dev/null
+++ b/modules/zeit
@@ -0,0 +1,19 @@
+#! /bin/sh
+
+case "$1" in
+ (--help)
+ echo "say current time" ;;
+ (*)
+ exec >>$NOISE_linefeed
+ eval `date +'k=%k ; M=%M'`
+ M=`echo $M | sed 's/0*//'`
+ echo /set pitch 10
+ case "$lang" in
+ (de|'') echo " Es ist $k Uhr $M" >$NOISE_linefeed ;;
+ (en|*-en)
+ test -z "$M" || M="and $M minutes"
+ echo " It is $k o clock $M" >$NOISE_linefeed ;;
+ (*) echo "Error: unsupported lang = $lang" >&2
+ esac
+ echo /set pitch ${noise_pitch-100}
+esac 2>&1