Skip to content

Instantly share code, notes, and snippets.

@AvnerCohen
Last active March 7, 2023 09:56
Show Gist options
  • Save AvnerCohen/70bc60852d7b44f4d1cbb2e84ce2c012 to your computer and use it in GitHub Desktop.
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)
#!/bin/bash
while true ; do
osascript -e "set volume input volume 100"
echo "$(date): Increased volume"
sleep 1;
done;
@AvnerCohen
Copy link
Author

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