This app show microphone status as simple bar.
mic-mutebar.mp4
This bar can be moved to anywhere.
- Download latest binary
- Open app
Additional installation steps on macOS:
- Select
mic-mutebar.app
- Open context menu and Click "Open"
When microphone is muted:
When microphone is inputing:
You can toggle mute/unmute by AppleScript.
set micVolume to toggleMic()
display notification micVolume with title "Mic"
tell application "mic-mutebar.app" to activate
return micVolume
on toggleMic()
set inputVolume to input volume of (get volume settings)
if inputVolume <= 5 then
set inputVolume to 100
set micVal to "🔈"
else
set inputVolume to 0
set micVal to "🔇"
end if
set volume input volume inputVolume
return micVal
end toggleMic
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
MIT