unixorn/tumult.plugin.zsh

View on GitHub
bin/reindex-spotlight

Summary

Maintainability
Test Coverage
#!/bin/bash

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

####################################################################################################
#                                       Remove Problem Files                                       #
####################################################################################################

mdutil -i off -a /
defaults write /Library/Preferences/com.apple.desktopservices DSDontWriteNetworkStores true
mdutil -i on -a /
mdutil -Ea /

####################################################################################################
#                                     Restart System UI Server                                     #
####################################################################################################

killall SystemUIServer