slackbuilds_ponce/audio/sndio/rc.sndiod
Ivan Kovmir fa525c42e5
audio/sndio: Added (small audio and MIDI framework)
Signed-off-by: bedlam <dave@slackbuilds.org>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2023-06-03 10:38:18 +07:00

57 lines
821 B
Bash

#!/bin/sh
# Start/stop/restart sndiod(8).
_prefix='/usr'
_sndiod="$_prefix/bin/sndiod"
_pkill="$_prefix/bin/pkill"
_ps="$_prefix/bin/ps"
_grep="/bin/grep"
# Start sndiod:
sndiod_start() {
if $_ps aux | $_grep -v grep | $_grep $_sndiod > /dev/null
then
echo 'sndiod is already running.'
else
$_sndiod
fi
}
# Stop sndiod:
sndiod_stop() {
$_pkill -f $_sndiod
}
# Restart sndiod:
sndiod_restart() {
sndiod_stop
sleep 1
sndiod_start
}
# Check if sndiod is running
sndiod_status() {
if $_ps aux | $_grep -v grep | $_grep $_sndiod > /dev/null
then
echo 'sndiod is running.'
else
echo 'sndiod is not running.'
fi
}
case "$1" in
'start')
sndiod_start
;;
'stop')
sndiod_stop
;;
'restart')
sndiod_restart
;;
'status')
sndiod_status
;;
*)
echo "usage $0 start|stop|restart|status"
esac