Last active
March 7, 2023 09:56
-
-
Save AvnerCohen/70bc60852d7b44f4d1cbb2e84ce2c012 to your computer and use it in GitHub Desktop.
OSX Apple Script - Jabra mute fix (input volume) and Balance fix (just a wtf)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while true ; do | |
osascript -e "set volume input volume 100" | |
echo "$(date): Increased volume" | |
sleep 1; | |
done; |
An improved solution that is not UI based:
#!/bin/bash
while true ; do
osascript -e "set volume input volume 100"
echo "up it"
sleep 4;
done;
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Simple script to fix this WTF Jabra auto mute and balance issue:
https://www.reddit.com/r/Jabra/comments/qjwxdu/muting_during_slackzoom_calls_on_mac_elite_85t/
https://www.reddit.com/r/Jabra/comments/qp006u/jabra_elite_7_being_automuted_on_google_hangouts/
https://richardbloomfield.blog/2021/12/my-ear-buds-keep-auto-muting-themselves/
To actually run:
to run in a loop every, say, 20 seconds: