summaryrefslogtreecommitdiff
path: root/Base/usr
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-11-22 21:52:52 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-11-22 21:52:52 +0100
commit6fbe0f17f279ef756d83941fce21b7c4a5ad6a4c (patch)
tree527813da44d5fff2afab896a6ad4a907f2571df2 /Base/usr
parent107011f1190004b3a18f395c145ee6211301622c (diff)
downloadserenity-6fbe0f17f279ef756d83941fce21b7c4a5ad6a4c.zip
Docs: Add avol(1)
Diffstat (limited to 'Base/usr')
-rw-r--r--Base/usr/share/man/man1/avol.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/Base/usr/share/man/man1/avol.md b/Base/usr/share/man/man1/avol.md
new file mode 100644
index 0000000000..3c0e2878f4
--- /dev/null
+++ b/Base/usr/share/man/man1/avol.md
@@ -0,0 +1,36 @@
+## Name
+
+avol - Change system sound volume
+
+## Synopsis
+
+```**sh
+$ avol [-m] [-M] [volume]
+```
+
+## Description
+
+This program is used to control the AudioServer volume and muted state.
+
+## Options
+
+* `-m`: Mute all audio.
+* `-M`: Unmute all audio.
+
+## Examples
+
+```sh
+# Set the volume to 100
+$ avol 100
+Volume: 100
+
+# Get the current volume
+$ avol
+Volume: 80
+
+# Mute all audio
+$ avol -m
+
+# Unmute all audio
+$ avol -M
+```