From 54b8408cc8bdd9dbb216e285ba349032ef4049d4 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Thu, 18 Jan 2018 11:19:46 +0000 Subject: [PATCH] pulseaudio: Add page --- pages/linux/pulseaudio.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages/linux/pulseaudio.md diff --git a/pages/linux/pulseaudio.md b/pages/linux/pulseaudio.md new file mode 100644 index 0000000000..d048441aff --- /dev/null +++ b/pages/linux/pulseaudio.md @@ -0,0 +1,23 @@ +# pulseaudio + +> The pulseaudio sound system daemon and manager. + +- Check if pulseaudio is running (a non-zero exit code means it is not running): + +`pulseaudio --check` + +- Start the pulseaudio daemon in the background: + +`pulseaudio --start` + +- Kill the running pulseaudio daemon: + +`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}}"`