views:

285

answers:

2

I have managed to increase the font sizes for the XCode editor window, but haven't found a way to increase font sizes in other areas of the application, such as the Groups & Files side bar and the console window.

Someone suggested using TinkerTool to do this, and I downloaded the tool, but it's not at all clear to me how to use the tool to tweak the fonts for just these two things (and not affect other apps in my system).

If anyone has detailed instructions on how to increase the font size of these two areas of XCode specifically, I would be very grateful!

Thanks

Elisabeth

A: 

Within xcode, go to Preferences -> Font & Color, select which items you want to change, then double click on your selection (this is tricky), the font window will show up. Then you can choose which font and size.

CindySeattle
The poster is asking how to change the fonts in the rest of the UI, not the editor.
Rob Keniger
Unfortunately this only works for the editor window, not the rest of the UI.
Elisabeth
A: 

1) Run defaults write com.apple.Xcode PBXTableFontSize 20 in Terminal, substituting 18 for whatever value you wish to use. 2) Run defaults write com.apple.Xcode PBXTableFont Helvetica in Terminal, substituting Helvetica for the font you wish to use. I'm not sure what OS X's default Sans Serif font is, but Helvetica is pretty generic.

of course, you can also substitute the font in step 2

AllieT