unixorn/tumult.plugin.zsh

View on GitHub
bin/unmute

Summary

Maintainability
Test Coverage
#!/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