Operating System/MacOS
[MacOS] ScreenCapture 설정
do9dark
2018. 6. 28. 23:14
- 스크린샷 시작 파일명 변경
$ defaults write com.apple.screencapture name "D"
시작 파일명 D로 변경
$ killall SystemUIServer
시스템 변경 사항을 적용하기 위해서 시스템 관련 인터페이스를 중지하고 다시 시작
- 스크린샷 저장 위치 변경
$ defaults write com.apple.screencapture location /Users/do9dark/Documents/
$ killall SystemUIServer
- 스크린샷 그림자(테두리) 없애기
$ defaults write com.apple.screencapture disable-shadow -bool true
false 설정 시 그림자(테두리) 생성
$ killall SystemUIServer