macOSのスクリーンショット設定の変更
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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