From 194e96b568e4ca0ab48c06f3529ea7e0176671e1 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Fri, 1 Dec 2023 03:44:35 +0100 Subject: [PATCH] i3: Do not unmute when changing the volume I want to be able to control the volume **before** unmuting. --- .config/i3/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/i3/config b/.config/i3/config index d2ca06e..2e03cd3 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -178,9 +178,9 @@ bindsym XF86MonBrightnessUp exec xbacklight -inc 5 # Volume controls # See: https://faq.i3wm.org/question/125/how-to-change-the-systems-volume.1.html bindsym XF86AudioRaiseVolume exec --no-startup-id \ - amixer -q -D pulse sset Master 5%+ unmute + amixer -q -D pulse sset Master 5%+ bindsym XF86AudioLowerVolume exec --no-startup-id \ - amixer -q -D pulse sset Master 5%- unmute + amixer -q -D pulse sset Master 5%- bindsym XF86AudioMute exec --no-startup-id \ amixer -q -D pulse sset Master toggle-mute