#!/bin/bash
echo “LightMode on.”
# Run on.
defaults write com.apple.universalaccess reduceTransparency -bool false
killall Dock
killall NotificationCenter
killall Finder
sleep 2
defaults write com.apple.universalaccess reduceTransparency -bool true
killall Spotlight
kill `ps -A | grep -w Terminal.app | grep -v grep | awk '{print $1}'`
echo "Done!"