mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
237 B
11 lines
237 B
1 year ago
|
#!/bin/sh
|
||
|
if amixer get Capture | tail -2 | grep -q '\[on\]'; then
|
||
|
paplay ~/.local/bin/tools/audio/mic_muted.wav
|
||
1 year ago
|
lmc mute
|
||
|
lmc undeaf
|
||
1 year ago
|
else
|
||
1 year ago
|
lmc unmute
|
||
|
lmc undeaf
|
||
1 year ago
|
paplay ~/.local/bin/tools/audio/mic_activated.wav
|
||
|
fi
|