summaryrefslogtreecommitdiffstats
path: root/.zsh/functions/precmd_maybe_festival
blob: 3f8baa3bda84b975c46bae3fb480c4c0e9909613 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cmdstatus=$?

if [ -n "$__COMMAND_EXECUTING" -a $__COMMAND_EXECUTING -gt 0 \
        -a -n "$__COMMAND_EXEC_TIME" ]; then
    __COMMAND_EXECUTING=0
    duration=$(expr $(date +%s) - $__COMMAND_EXEC_TIME)

    if [ $duration -gt 30 ]; then
        if [ $cmdstatus -eq 0 ]; then
            echo "done" | festival --tts
        else
            echo "failed" | festival --tts
        fi
    fi
fi