main
#!/bin/bash if [[ "$(uname -s)" = 'Darwin' ]]; then exec osascript -e 'set volume output muted false' else echo "$0 is only works on macOS" exit 1 fi