diff options
| author | sinanmohd <pcmsinan@gmail.com> | 2023-03-17 11:42:54 +0530 | 
|---|---|---|
| committer | sinanmohd <pcmsinan@gmail.com> | 2023-03-17 11:43:26 +0530 | 
| commit | 4f06cc87a2a26b3f7be22268f095c00c88bf49f9 (patch) | |
| tree | 6401008bada71f5622af6486de8dcf3afeef0d29 /.local/bin/audio_mutemic | |
| parent | aa10491d42c08cf624ca217a84a6f9f614e54e41 (diff) | |
audio_cyclesink, audio_mutemic: initial commit
mute mic and cycle between wireplumber(pipewire) audio sinks
Diffstat (limited to '.local/bin/audio_mutemic')
| -rwxr-xr-x | .local/bin/audio_mutemic | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/.local/bin/audio_mutemic b/.local/bin/audio_mutemic new file mode 100755 index 0000000..1a2f01a --- /dev/null +++ b/.local/bin/audio_mutemic @@ -0,0 +1,15 @@ +#! /bin/sh + +# toggle mic mute and send notification about current state + +wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle + +command -v notify-send > /dev/null || exit +case "$(wpctl get-volume @DEFAULT_AUDIO_SOURCE@)" in +*\[MUTED\]) +	notify-send " muted" "microphone  is muted" +	;; +*) +	notify-send " unmuted" "microphone  is unmuted" +	;; +esac | 
