up vote 0 down vote favorite
1
share [g+] share [fb]

On Mac OS X, some windows are a fixed size (eg. Photo Booth). Is there a way I can make them smaller to take up less space on a smaller screen?

link|improve this question

67% accept rate
2  
You should switch your accepted response to Michael Neale -- that's a slick way of doing it! – Andrew Flanagan Dec 4 '09 at 16:02
feedback

2 Answers

up vote 4 down vote accepted

Actually there is a solution:

Before launching an app, run from terminal: defaults write -g AppleDisplayScaleFactor 0.8 That will make all subsequent apps run at 80% size (you can set it back to 1 after it is launched).

To make this easy, create the following apple script (I turned it into an .app and gave it the icon for photobooth):

do shell script "defaults write -g AppleDisplayScaleFactor 0.8" 
tell application "Photo Booth" to launch 
do shell script "defaults write -g AppleDisplayScaleFactor 1"
link|improve this answer
That's pretty cool -- I never knew that! – Andrew Flanagan Dec 4 '09 at 15:46
feedback

I believe the answer is no.

The only thing that may help is simply increasing your screen resolution.

Not a great answer, but I really don't think it's possible.

Update: See Michael Neale's response below for a really slick solution.

But there are some alternatives:

link|improve this answer
See below - there is a command line way - not for everyone, but works brilliantly. Those other apps look handy though. – Michael Neale Dec 4 '09 at 3:07
Thanks for updating it. Actually, the solution below technically fools the app into thinking the screen is higher resolution, adding virtual pixels ;) Its a handy trick. – Michael Neale Dec 5 '09 at 21:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.