Change default file name of screenshot in macOS / macOS スクリーンショットのデフォルトファイル名を変更する


#SCREEN CAPTURE
# スクリーンショットのファイル名に日付を表示する/表示しない
defaults write com.apple.screencapture include-date -bool false
# スクリーンショットをPNG形式で保存(その他のオプション:BMP、GIF、JPG、PDF、TIFF)
defaults write com.apple.screencapture type -string "png"
# スクリーンショットの保存場所
defaults write com.apple.screencapture location ~/Desktop/Screenshots
# スクリーンキャプチャのシャドウを無効にする
defaults write com.apple.screencapture disable-shadow -bool true
# ファイル名を変更する
defaults write com.apple.screencapture name [yourFilename]
# 設定変更を反映
killall SystemUIServer  

参考リンク

https://apple.stackexchange.com/questions/294548/macos-sierra-10-12-screen-captures-how-to-edit-system-files

, ,