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