mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-12 18:28:07 +01:00
12 lines
283 B
Bash
Executable file
12 lines
283 B
Bash
Executable file
#!/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-media-session-log-null cat >/dev/null
|
|
fi
|