mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-14 19:28:07 +01:00
13 lines
307 B
Text
13 lines
307 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# Wait for the PipeWire Media Session daemon to start.
|
||
|
sv check "$HOME/.runit/sv/pipewire-media-session" >/dev/null || exit 1
|
||
|
|
||
|
[ -r ./conf ] && . ./conf
|
||
|
|
||
|
if [ "${LOGGING_ENABLE}x" = "1x" -a -n "${LOG_LEVEL}" ]; then
|
||
|
export PIPEWIRE_DEBUG="${LOG_LEVEL}"
|
||
|
fi
|
||
|
|
||
|
exec pipewire-pulse ${OPTS:-} 2>&1
|