mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-07 12:57:38 -08:00
MPDLcd is a small adapter which will display the status of a MPD server on a LCD screen, through lcdproc. It allows defining various layouts depending on LCD size, with fix or moving parts. Closes: https://bugs.gentoo.org/407349 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
16 lines
367 B
Plaintext
16 lines
367 B
Plaintext
#!/sbin/openrc-run
|
|
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
name="MPDlcd"
|
|
description="A small adapter which will display the status of a MPD server on a LCDproc screen"
|
|
pidfile="/run/mpdlcd.pid"
|
|
|
|
command="/usr/bin/mpdlcd"
|
|
command_args="${MPDLCD_OPTS}"
|
|
command_background="true"
|
|
|
|
depend() {
|
|
need net
|
|
}
|