From a3d28e575f28909dfe70aad98311be643f4f6a0f Mon Sep 17 00:00:00 2001 From: Alexander <2683344+terminalnode@users.noreply.github.com> Date: Thu, 9 May 2019 22:57:30 +0200 Subject: [PATCH] pamixer: add page (#2987) --- pages/common/pamixer.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/common/pamixer.md diff --git a/pages/common/pamixer.md b/pages/common/pamixer.md new file mode 100644 index 000000000..493f365aa --- /dev/null +++ b/pages/common/pamixer.md @@ -0,0 +1,32 @@ +# pamixer + +> A simple command-line mixer for PulseAudio. +> Homepage: . + +- List all sinks and sources with their corresponding IDs: + +`pamixer --list-sinks --list-sources` + +- Set the volume to 75% on the default sink: + +`pamixer --set-volume {{75}}` + +- Toggle mute on a sink other than the default: + +`pamixer --toggle-mute --sink {{ID}}` + +- Increase the volume on default sink by 5%: + +`pamixer --increase {{5}}` + +- Decrease the volume on a source by 5%: + +`pamixer --decrease {{5}} --source {{ID}}` + +- Use the allow boost option to increase, decrease, or set the volume above 100%: + +`pamixer --set-volume {{105}} --allow-boost` + +- Mute the default sink (use `--unmute` instead to unmute): + +`pamixer --mute`