View Single Post
Old 10-23-2015, 07:21 AM   #2
shad0wca7
Member
 
Join Date: Jun 2015
Posts: 32
Default

Yes, I have two scripts:

Disable:
Code:
#!/bin/bash
defaults write com.apple.dock expose-animation-duration -float 0
defaults write com.apple.universalaccess reduceTransparency -bool true
killall Dock
Enable:
Code:
#!/bin/bash
defaults delete com.apple.dock expose-animation-duration
defaults write com.apple.universalaccess reduceTransparency -bool false
killall Dock
These are run automatically whenever the my D3100 is plugged in / unplugged. I use ControlPlane to detect when that happens so it's all automatic and painless!
shad0wca7 is offline   Reply With Quote