blob: 196d848366fb4c210830b3c4b840f60d15c91fb7 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Wait for the PipeWire Pulse daemon to start.
sv check "$HOME/.runit/sv/pipewire-pulse" >/dev/null || exit 1
[ -r ./conf ] && . ./conf
exec mpd --no-daemon --stderr ${OPTS:-} 2>&1
|