mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-14 03:39:53 +03:00
16 lines
284 B
Bash
16 lines
284 B
Bash
#!/sbin/openrc-run
|
|
|
|
description="Multimedia processing graphs"
|
|
|
|
command="/usr/bin/pipewire"
|
|
|
|
supervisor=supervise-daemon
|
|
error_logger="logger -t '${RC_SVCNAME}' -p daemon.error"
|
|
|
|
export PIPEWIRE_NOTIFICATION_FD=3
|
|
ready=fd:3
|
|
|
|
depend() {
|
|
need dbus wireplumber
|
|
before pipewire-pulse
|
|
}
|