summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRafael Marçalo <raroma09@gmail.com>2024-02-04 02:17:33 +0000
committerRafael Marçalo <raroma09@gmail.com>2024-02-04 02:17:33 +0000
commitd289b0b0cdad2b884e9ee6499705190036e9a180 (patch)
treed801d8c11336231e1181be754f1b5f32be9e3d3a /scripts
parentff4cdf75f155e2186b939b777406336193057967 (diff)
Fixed mixer script for pamixer
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/.local/bin/mixer8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/.local/bin/mixer b/scripts/.local/bin/mixer
index a4ac844..7dd43e6 100755
--- a/scripts/.local/bin/mixer
+++ b/scripts/.local/bin/mixer
@@ -3,14 +3,14 @@
# Pulseaudio or Alsa audio binds
case $1 in
"+")
- amixer set Master 1%+
+ pamixer -i 1
;;
"-")
- amixer set Master 1%-
+ pamixer -d 1
;;
t)
- amixer set Master toggle
+ pamixer -t
;;
m)
- amixer set Capture toggle
+ pamixer --default-source -t
esac