mic-mutebar
mic-mutebar copied to clipboard
Tiny GUI app that show microphone status
mic-mutebar
This app show microphone status as simple bar.
https://user-images.githubusercontent.com/19714/143683255-60b38e79-803d-4a6a-802c-09d35c3b9f28.mp4
This bar can be moved to anywhere.
Installation
- Download latest binary
- Open app
:warning: This app is not signed. So, OS show warning about it.
Additional installation steps on macOS:
- Select
mic-mutebar.app - Open context menu and Click "Open"
Usage
When microphone is muted:

When microphone is inputing:

Tips
Toggle mute/unmute
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
Contributing
- 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
License
MIT