macでウインドウのキャプチャ(スクリーンショット)を撮ると、デフォルトではウインドウの周りの影も付いてくる。これを消す方法。ターミナルでコマンドを実行する。
影を無効にする
defaults write com.apple.screencapture disable-shadow -bool TRUE
killall SystemUIServer
影を有効にする
defaults write com.apple.screencapture disable-shadow -bool FALSE
killall SystemUIServer
以上