#!/bin/bash
. findwine
if [ -e "$HOME/.wine/c/Programme/SplashKiller/SplashKillerRunner.exe" ] && [ "$WINEVER" != "20050111" ] && [ "$WINEVER" != "20050310" ]; then
  $WINE "c:\Programme\SplashKiller\SplashKillerRunner.exe" &
  spkr=$!
  sleep 1s
fi
exec outlook.executor ${PARAM:+"$PARAM"} &
sleep 10s
[ "$spkr" = "" ] || kill "$spkr"
exit 0
