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