summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/runit-scripts/runitscripts/services/lcdd/run
blob: da2258b3ce8e4baedaac524b8e9aeeda382d99af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
. /etc/systemconfig
export TERM=linux
. /etc/rc.conf
. /etc/rc.d/functions
stat_runit "Starting lcdproc"


exec 2>&1
if [ x$LCDtype = xxosd ]
then
	DISPLAY=127.0.0.1:0 /usr/sbin/LCDd -f -c /etc/LCDd.conf 2>/dev/null >/dev/null
else
	exec /usr/sbin/LCDd -f -c /etc/LCDd.conf 2>/dev/null >/dev/null
fi