summaryrefslogtreecommitdiff
path: root/sys-apps/openrc-userscripts/files/mpd
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/openrc-userscripts/files/mpd')
-rwxr-xr-xsys-apps/openrc-userscripts/files/mpd32
1 files changed, 32 insertions, 0 deletions
diff --git a/sys-apps/openrc-userscripts/files/mpd b/sys-apps/openrc-userscripts/files/mpd
new file mode 100755
index 0000000..8eaf7fb
--- /dev/null
+++ b/sys-apps/openrc-userscripts/files/mpd
@@ -0,0 +1,32 @@
+#!/sbin/openrc-run --user
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+: CFGFILE=${CFGFILE:=${XDG_CONFIG_HOME:-${HOME}/.config}/mpd/mpd.conf}
+
+depend() {
+ use pipewire pulseaudio
+ config ${CFGFILE}
+}
+
+get_config() {
+ x=$1
+ test -e ${CFGFILE} || return 1
+ sed -n \
+ -e '/^[ \t]*'${x}'/{s:^[ \t]*'${x}'[ \t]\+"\?\([^#"]\+\)[^"]*"\?$:\1: ; p }' \
+ ${CFGFILE}
+}
+
+extra_started_commands='reload'
+# Required by io_uring
+command=/usr/bin/mpd
+command_args=${CFGFILE}
+required_files=${CFGFILE}
+pidfile=$(get_config pid_file)
+description="Music Player Daemon"
+
+reload() {
+ ebegin "Reloading ${RC_SVCNAME}"
+ start-stop-daemon --pidfile ${pidfile} --signal HUP
+ eend $?
+}