azu / mic-mutebar

Tiny GUI app that show microphone status

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mic-mutebar

This app show microphone status as simple bar.

mic-mutebar.mp4

This bar can be moved to anywhere.

Installation

  1. Download latest binary
  2. Open app

⚠️ 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.

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

  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

About

Tiny GUI app that show microphone status

License:MIT License


Languages

Language:HTML 56.1%Language:JavaScript 27.1%Language:CSS 16.2%Language:Shell 0.6%