Summary
Stickies.app のデフォルトの背景色、フォントを変更したい。/Applications/Stickies.app/Contents/Resources/defaultSettings.plist で設定変更可能
背景色と値の対応は以下のとおり
ColourIndex | 色 |
0 | Yellow |
1 | Blue |
2 | Green |
3 | Pink |
4 | Purple |
5 | Gray |
/Applications/Stickies.app/Contents/Resources/defaultSettings.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ColourIndex</key>
<integer>5</integer>
<key>FontName</key>
<string>Osaka</string>
<key>FontSize</key>
<integer>14</integer>
<key>ViewHeight</key>
<real>200</real>
<key>ViewWidth</key>
<real>300</real>
<key>WindowFlags</key>
<integer>0</integer>
</dict>
</plist>