https://github.com/azu/mic-mutebar
Tiny GUI app that show microphone status
https://github.com/azu/mic-mutebar
electron mac mic microphone mute
Last synced: about 1 month ago
JSON representation
Tiny GUI app that show microphone status
- Host: GitHub
- URL: https://github.com/azu/mic-mutebar
- Owner: azu
- License: mit
- Created: 2021-11-27T10:44:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-11T11:33:54.000Z (almost 2 years ago)
- Last Synced: 2025-03-30T20:51:09.291Z (2 months ago)
- Topics: electron, mac, mic, microphone, mute
- Language: HTML
- Homepage:
- Size: 396 KB
- Stars: 28
- Watchers: 2
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
1. Download [latest binary](https://github.com/azu/mic-mutebar/releases/latest)
2. Open app:warning: This app is not signed. So, OS show warning about it.
Additional installation steps on macOS:
1. Select `mic-mutebar.app`
2. 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.
```applescript
set micVolume to toggleMic()
display notification micVolume with title "Mic"
tell application "mic-mutebar.app" to activate
return micVolumeon 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
1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D## License
MIT