Skip to content

Instantly share code, notes, and snippets.

@qrohlf
Last active November 4, 2015 17:07
Show Gist options
  • Save qrohlf/9295055 to your computer and use it in GitHub Desktop.
Save qrohlf/9295055 to your computer and use it in GitHub Desktop.
Disable/enable drop shadows in OSX screenshots

(from http://www.macgasm.net/2011/05/23/disable-dropshadow-mac-os-window-screenshots/)

To disable OSX screenshot drop shadows:

defaults write com.apple.screencapture disable-shadow -bool true
killall SystemUIServer

To re-enable OSX screenshot drop shadows:

defaults write com.apple.screencapture disable-shadow -bool false
killall SystemUIServer

To change the OSX screenshot save location:

defaults write com.apple.screencapture location ~/Downloads/
killall SystemUIServer

To get the ip address of the wifi card:

ipconfig getifaddr en0 #(use en2 for thunderbolt ethernet)
@qrohlf
Copy link
Author

qrohlf commented May 1, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment