mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-03-19 10:17:44 +01:00
11 lines
357 B
Plaintext
11 lines
357 B
Plaintext
|
#!/bin/sh
|
||
|
if amixer get Capture | tail -2 | grep -q '\[on\]'; then
|
||
|
paplay ~/.local/bin/tools/audio/mic_muted.wav
|
||
|
amixer set Master unmute >/dev/null 2>&1
|
||
|
amixer set Capture nocap >/dev/null 2>&1
|
||
|
else
|
||
|
amixer set Master unmute >/dev/null 2>&1
|
||
|
amixer set Capture cap >/dev/null 2>&1
|
||
|
paplay ~/.local/bin/tools/audio/mic_activated.wav
|
||
|
fi
|