blob: 8954c286e74a2508e179ebdedb30d55bb22b4b21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
rtkit is a dbus service needed for pipewire to apply for a realtime
priority.
It needs a separate user to run.
groupadd -g 378 rtkit
useradd -u 378 -s /bin/false -d /var/lib/rtkit \
-g rtkit rtkit
In principle, pipewire may function without this service, but it
helps to placate some error messages present on Slackware 15.0
default setup.
|