summaryrefslogtreecommitdiffstats
path: root/modules/zeit
blob: 340d6fce0514060076b76a1d9048d982be2153a8 (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
    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