Skip to content

Instantly share code, notes, and snippets.

@o0
Forked from qrohlf/OSX-tweaks.md
Created November 4, 2015 17:07
Show Gist options
  • Save o0/2e38f4f13d32cdd9ed77 to your computer and use it in GitHub Desktop.
Save o0/2e38f4f13d32cdd9ed77 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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment