mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-10 01:18:06 +01:00
9 lines
174 B
Bash
Executable file
9 lines
174 B
Bash
Executable file
#!/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
|