파이어폭스(Firefox)나 크롬(Chrome)과 달리 사파리는 설정 메뉴를 통해 기본 글꼴을 바꿀 수 없다. 그러나 defaults 명령을 사용해 변경하는 것은 가능하다.
기본 폰트 패밀리 및 크기 변경
1
2
|
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2StandardFontFamily 'NanumBarunGothic'
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2DefaultFontSize 16
|
고정폭 폰트 패밀리 및 크기 변경
1
2
|
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2FixedFontFamily 'NanumGothicCoding'
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2DefaultFixedFontSize 14
|