Apple Event: May 7th at 7 am PT

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

How do I make Finder windows narrower (in Lion)?

One new feature of 10.7 Lion is that the minimum possible Findow window width seems to have increased (to around 300 pixels it seems, from about 150 in 10.6). Does anyone know how to decrease the window width? 300 pixels is too wide for the 13 inch MacBook.


I phoned Apple and they said "it can't be done" ..... I just do not believe that, there has to be a way. (I am not a Terminal guru, so I need walking through this if a route via the Terminal -- inevitable -- is required.)

Posted on Aug 1, 2011 3:49 AM

Reply
17 replies

Nov 8, 2012 4:30 AM in response to chrisgalway1

I found this solution works - at least for now.


It is a short AppleScript that measures the bounds of a window and then calculates the new bounds by leaving the top left corner where it was and also retaining the bottom edge position. It just shrinks the width.


I keep stuff like this in an XMenu item where I can get at it easily. If you save it as an application from the script editor, you could drag that app to the dock. Or probably the best solution would be to attach it to a function key either with a keyboard short cut or some kind of service call.


Note that this operates on the frontmost Finder window only.


Using this technique you can still set the Finder windows to silly values like 20 pixels but the Finder then gets confused. As soon as you manually resize the window, Finder will snap it back to its minimum size.


Now the question is, how long will it be before the Aple engineers spot this and intercede when you set the Finder Window Bounds and stop this trick from working. I can rationalise why they might want to make sure you cannot create a zero width Window but the current minimum size is annoyingly large.


I have left out any sidebar and task bar switching. Its a good idea to deal with that separately with Command-Alt-S and Command-Alt-T keyboard shortcuts.


Anyway, here is the script:


tell application "Finder"

set myBounds to bounds of front window

set myLeft to item 1 of myBounds

set myTop to item 2 of myBounds

set myRight to item 3 of myBounds

set myBottom to item 4 of myBounds


set bounds of front window to {myLeft, myTop, (myLeft + 200), myBottom}

end tell

How do I make Finder windows narrower (in Lion)?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.