Linux – User systemd PulseAudio service

arch linuxd-buspulseaudiosystemdusers

Not much else to this question: I would like to know what I need to create a PulseAudio systemd service to be run with systemd --user.

I've tried a few different things, including various user services from Google, but I can't get it set up just right between dbus and everything else required for it.

Update: It seems to work ok with graphical sessions, but I'm still having some inconsistancy with dbus when logging in through console. But PulseAudio is starting rather reliably, so I'm not overly concerned.

Best Answer

Just a guess but something like this in a file systemd/user/pulseaudio.service:

[Unit]
Description=PulseAudio Sound System
Before=sound.target

[Service]
BusName=org.pulseaudio.Server
ExecStart=/usr/bin/pulseaudio
Restart=always

[Install]
WantedBy=session.target

I found this in a github repo which had additional files related to systemd setup.

The author of that repo, also wrote up on his blog this post: systemd as a session manager. This post details how to make use of the files in the repo.

Incidentally the files in the repo go here, ${HOME}/.config/systemd/user/.

Related Question