macのスクリーンショット周りの調整


やったこと

cmd + shift + 5で実行するスクリーンショットの体験をよくするため、設定を行う

## スクリーンショットに関するすべての設定を確認
% defaults read com.apple.screencapture

##  ファイル名を、デフォルト(スクリーンショット yyyy-mm-dd hhmmss.png)から変更
% defaults write com.apple.screencapture name ""

## ファイルの保存先(デフォルト)
% defaults write com.apple.screencapture location ~/Desktop

## ファイル形式(デフォルト)
% defaults write com.apple.screencapture type png

## 部分スクリーンショットでの陰影をなくす
% defaults write com.apple.screencapture disable-shadow -bool true