opt/alsa-utils/rc.alsa
2007-04-30 10:50:09 -05:00

27 lines
316 B
Bash

#!/bin/sh
#
# /etc/rc.d/alsa: store/restore ALSA mixer levels
#
# location of the alsactl executable
ALSACTL=/usr/sbin/alsactl
case $1 in
start)
$ALSACTL restore
;;
stop)
$ALSACTL store
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "Usage: $0 [start|stop|restart]"
;;
esac
# End of file