1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-03 21:35:40 +02:00

pamixer: add page (#2987)

This commit is contained in:
Alexander 2019-05-09 22:57:30 +02:00 committed by Starbeamrainbowlabs
parent 2a75cabc26
commit a3d28e575f

32
pages/common/pamixer.md Normal file
View file

@ -0,0 +1,32 @@
# pamixer
> A simple command-line mixer for PulseAudio.
> Homepage: <https://github.com/cdemoulins/pamixer>.
- 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`