summaryrefslogtreecommitdiffstats
path: root/modules/zeit
blob: 75ffc20af596fdead3d9eb3e9599b9ae699fb3d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh

case "$1" in
  (--help)
    echo "say current time" ;;
  (*)
    exec >>$NOISE_linefeed
    k=`date +%k`
    M=`date +%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