From 31887ca09fd7daa5a3120629177cac106e179aaa Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 11 May 2020 22:01:53 +0300 Subject: [PATCH] sway/config: Fix missing exec for audio mute --- sway/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/config b/sway/config index 244bd50..b128067 100644 --- a/sway/config +++ b/sway/config @@ -158,7 +158,7 @@ input type:keyboard { bindsym XF86AudioRaiseVolume exec pamixer -ui 5 && pamixer --get-volume > $SWAYSOCK.wob bindsym XF86AudioLowerVolume exec pamixer -ud 5 && pamixer --get-volume > $SWAYSOCK.wob - bindsym XF86AudioMute pamixer --toggle-mute && ( pamixer --get-mute && echo 0 > $SWAYSOCK.wob ) || pamixer --get-volume > $SWAYSOCK.wob + bindsym XF86AudioMute exec pamixer --toggle-mute && ( pamixer --get-mute && echo 0 > $SWAYSOCK.wob ) || pamixer --get-volume > $SWAYSOCK.wob bindsym XF86AudioMicMute exec pactl set-source-mute @DEFAULT_SOURCE@ toggle bindsym XF86MonBrightnessUp exec light -S "$(light -G | awk '{ print int(($1 + .72) * 1.4) }')" && light -G | cut -d'.' -f1 > $SWAYSOCK.wob bindsym XF86MonBrightnessDown exec light -S "$(light -G | awk '{ print int($1 / 1.4) }')" && light -G | cut -d'.' -f1 > $SWAYSOCK.wob