Skip to content

Instantly share code, notes, and snippets.

@anon5r
Created December 6, 2018 01:09
Show Gist options
  • Save anon5r/6d6b10bfed0e4ddd209f73d0059ce1fb to your computer and use it in GitHub Desktop.
Save anon5r/6d6b10bfed0e4ddd209f73d0059ce1fb to your computer and use it in GitHub Desktop.
macOSのスクリーンショット設定の変更
#!/bin/sh
# スクリーンショットの保存先を変更する
defaults write com.apple.screencapture location ~/Downloads/ScreenShots/
# 保存場所を元に戻す
# defaults delete com.apple.screencapture location
# スクリーンショットのファイル名接頭辞を変更する
defaults write com.apple.screencapture name 'ScreenShot'
# 設定を適用する
killall SystemUIServer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment