tldr/pages/linux/pulseaudio.md

25 lines
567 B
Markdown
Raw Normal View History

2018-01-18 11:19:46 +00:00
# pulseaudio
> The PulseAudio sound system daemon and manager.
2021-05-31 13:05:19 +01:00
> More information: <https://www.freedesktop.org/wiki/Software/PulseAudio/>.
2018-01-18 11:19:46 +00:00
- Check if PulseAudio is running (a non-zero exit code means it is not running):
2018-01-18 11:19:46 +00:00
`pulseaudio --check`
- Start the PulseAudio daemon in the background:
2018-01-18 11:19:46 +00:00
`pulseaudio --start`
- Kill the running PulseAudio daemon:
2018-01-18 11:19:46 +00:00
`pulseaudio --kill`
- List available modules:
`pulseaudio --dump-modules`
- Load a module into the currently running daemon with the specified arguments:
`pulseaudio --load="{{module_name}} {{arguments}}"`