diff options
Diffstat (limited to 'sv/pipewire')
-rw-r--r-- | sv/pipewire/conf | 12 | ||||
-rwxr-xr-x | sv/pipewire/log/run | 12 | ||||
-rwxr-xr-x | sv/pipewire/run | 9 |
3 files changed, 33 insertions, 0 deletions
diff --git a/sv/pipewire/conf b/sv/pipewire/conf new file mode 100644 index 0000000..5b61994 --- /dev/null +++ b/sv/pipewire/conf @@ -0,0 +1,12 @@ +# -*- mode: sh; -*- + +# Additional command line arguments for pipewire(1). +OPTS='' + +# Setting this to 1 enables logging, any other value - disables. +LOGGING_ENABLE=1 +# Set the pipewire log level. +# See: https://docs.pipewire.org/page_daemon.html#sec_logging +LOG_LEVEL=1 +# The directory will be created for you, if logging is enabled. +LOG_DIR="$HOME/.local/var/log/pipewire" diff --git a/sv/pipewire/log/run b/sv/pipewire/log/run new file mode 100755 index 0000000..64fc800 --- /dev/null +++ b/sv/pipewire/log/run @@ -0,0 +1,12 @@ +#!/bin/sh + +[ -r ../conf ] && . ../conf + +if [ "${LOGGING_ENABLE}x" = "1x" ]; then + # Create the log directory if not exists. + [ -d "${LOG_DIR}" ] || mkdir -p "${LOG_DIR}" + + exec svlogd -tt "${LOG_DIR}" +else + exec chpst -b pipewire-log-null cat >/dev/null +fi diff --git a/sv/pipewire/run b/sv/pipewire/run new file mode 100755 index 0000000..c6cf2e0 --- /dev/null +++ b/sv/pipewire/run @@ -0,0 +1,9 @@ +#!/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 |