unixorn/tumult.plugin.zsh

View on GitHub
bin/disable-crash-reports

Summary

Maintainability
Test Coverage
#!/usr/bin/env bash
#
# Enable Crash reports
#
# Copyright 2023, Joe Block <jpb@unixorn.net>

if [[ "$(uname -s)" != 'Darwin' ]]; then
  echo 'Sorry, this script only works on macOS'
  exit 1
fi

echo "You can re-enable crash reports with 'enable-crash-reports'"
exec defaults write com.apple.CrashReporterDialogType none