Added vol-adjust sample

This commit is contained in:
Janpstrunn 2024-07-02 19:14:48 -03:00 committed by GitHub
parent 4e75a12962
commit ec818062d9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

8
vol-adjust Normal file
View file

@ -0,0 +1,8 @@
# Increasing volume using pactl
# pactl set-sink-volume @DEFAULT_SINK@ +10%
# Decreasing volume using pactl
# pactl set-sink-volume @DEFAULT_SINK@ -10%
# Setting default volume using pactl
# pactl set-sink-volume @DEFAULT_SINK@ 100%
# Muting using pactl
# pactl set-sink-volume @DEFAULT_SINK@ 0%