summaryrefslogtreecommitdiffstats
path: root/noise/modules/zeit
blob: 9fbc33e470e2f94d59a6e53daabfd1f2452ce80a (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|sed 's/^[[:space:]]*1[[:space:]]*$/ein/'`
    M=`date +%M|sed 's/0*//'`
    echo /set pitch 10
    case "$lang" in
      (de|'') echo "/espeak Es ist $k Uhr $M" ;;
      (en|*-en)
          test -z "$M" || M="and $M minutes"
          echo "/espeak It is $k o clock $M" ;;
      (*) echo "Error: unsupported lang = $lang" >&2
    esac
    echo /set pitch ${noise_pitch-100}
esac 2>&1