From 8712dfa17f0dd7b90c646e13d2cd4e0d4c5a11e6 Mon Sep 17 00:00:00 2001 From: krebs Date: Fri, 9 Sep 2011 21:26:15 -0400 Subject: //god/overlord: be the right and only one This commit also makes the //noise module a pure wrapper around the read overlord. --- noise/modules/overlord | 33 ++++++++------------------------- 1 file changed, 8 insertions(+), 25 deletions(-) (limited to 'noise') diff --git a/noise/modules/overlord b/noise/modules/overlord index 53766116..ded8627a 100755 --- a/noise/modules/overlord +++ b/noise/modules/overlord @@ -1,31 +1,14 @@ #! /bin/sh set -euf -max=100 -step=10 -min=0 - -announce() { - # fade-out streams - for i in `seq $max -$step $min`; do - amixer -q -c 0 -D hw:0 sset Front $i% - sleep 0.1 - done - /krebs/streams/streams stop - - amixer -q -c 0 -D hw:0 sset Front $max% - mplayer /krebs/god/overlord/announce.mp3 >/dev/null - espeak -v de -s 120 -a 900 "$*" - - # fade-in streams - /krebs/streams/streams start - for i in `seq $min $step $max`; do - sleep 0.1 - amixer -q -c 0 -D hw:0 sset Front $i% - done -} +# cd // +cd $(dirname $(readlink -f $0))/../.. case "${1---help}" in - --help) echo "Make an announcement! Usage: /overlord ";; - *) announce "$@";; + --help) + echo "Make an announcement! Usage: /overlord " + ;; + *) + exec god/overlord/index "$@" + ;; esac -- cgit v1.2.3