#!/bin/sh
# setting-up esd sound server
# 
# (c) 2006, Eko M. Budi for Vector Linux
# License: GNU GPL

if startsound-alsa; then
   esd -nobeeps
else
  echo "ERROR: Esound cannot run without alsa/oss"
  exit 1
fi

