#!/usr/bin/openrc-run
# Copyright 2017 Hyperbola Project
# Distributed under the terms of the GNU General Public License v2

description="Unmute all sound card controls for use with the live HyperTalking environment"

depend() {
	after alsasound
}

start() {
	ebegin "Unmuting all sound card controls"
	/usr/bin/livecd-alsa-unmuter &
	eend $?
}
