Menu

[r10367]: / legacy / etc / rc.d / beep  Maximize  Restore  History

Download this file

37 lines (29 with data), 587 Bytes

#!/bin/sh
# Copyright (c) 2007-2009 Volker Theile (votdev@gmx.de)
# All rights reserved.

# PROVIDE: beep
# REQUIRE: LOGIN
# KEYWORD: shutdown

. /etc/rc.subr
. /etc/configxml.subr

name="beep"

# Custom commands
start_cmd="beep_start"
stop_cmd="beep_stop"

beep_start()
{
	if ! configxml_isset //system/disablebeep; then
		if [ -e /dev/speaker ]; then
			echo O3L30cO4L30cO5L30cO5L30g > /dev/speaker
		fi
	fi
}

beep_stop()
{
	if ! configxml_isset //system/disablebeep; then
		if [ -e /dev/speaker ]; then
			echo O5L30gO5L30cO4L30cO3L30c > /dev/speaker
		fi
	fi
}

run_rc_command "$1"
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.