mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-10 01:18:06 +01:00
10 lines
174 B
Text
10 lines
174 B
Text
|
#!/bin/sh
|
||
|
|
||
|
[ -r ./conf ] && . ./conf
|
||
|
|
||
|
if [ "${LOGGING_ENABLE}x" = "1x" -a -n "${LOG_LEVEL}" ]; then
|
||
|
export PIPEWIRE_DEBUG="${LOG_LEVEL}"
|
||
|
fi
|
||
|
|
||
|
exec pipewire ${OPTS:-} 2>&1
|