#!/bin/bash
echo “Reduce Transparency of Menus and Finder, keep the Dock transparent.”
# Em execução.
defaults write com.apple.universalaccess reduceTransparency -bool true
killall Finder
killall Spotlight
kill `ps -A | grep -w Terminal.app | grep -v grep | awk '{print $1}'`
echo "Done!"