Add mute mic keybinds

This commit is contained in:
SebastianStork 2024-06-06 19:26:17 +02:00
parent 45f1697f43
commit 400e04019c

View file

@ -82,6 +82,7 @@
mute = "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle";
volume-up = "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+";
volume-down = "wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-";
mute-mic = "wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle";
in
''
bindl = , XF86AudioPlay, exec, ${play-pause}
@ -90,6 +91,7 @@
bindl = , XF86AudioMute, exec, ${mute}
bindel = , XF86AudioRaiseVolume, exec, ${volume-up}
bindel = , XF86AudioLowerVolume, exec, ${volume-down}
bindl = SHIFT, XF86AudioMute, exec, ${mute-mic}
bindl = SUPER ALT, RETURN, exec, ${play-pause}
bindel = SUPER ALT, right, exec, ${play-next}
@ -97,6 +99,7 @@
bindl = SUPER ALT, BACKSPACE, exec, ${mute}
bindel = SUPER ALT, up, exec, ${volume-up}
bindel = SUPER ALT, down, exec, ${volume-down}
bindl = SUPER ALT, M, exec, ${mute-mic}
''
}