Tiling Finder Windows is a widely sought out feature by OSX / macOS users for the past few years.
UPDATE MAY 2020: This works for older generation of OSX and the latest generation of Apple Mac Software – macOS Catalina 10.5
Mission control(formerly Expose) which is supposed to help you manage windows will not help when you need to work with Multiple Finder Windows.
Especially if you were a Windows/Linux User, you will find it pretty hard to resize and place windows.
Fix – use Apple Scripts.
You can easily write a small script which will help you with this task.
Steps
-
- Launch Apple Script Editor
- Copy paste the following code into the editor
tell application "Finder"
set n to count of window
set screenSize to bounds of window of desktop
set screenWidth to item 3 of screenSize
set screenHeight to item 4 of screenSize
if n is equal to 0 then return
set windowWidth to screenWidth / n
if (n > 0) then
activate
set w to 1
repeat
tell window w
set bounds to {windowWidth * (w - 1), 0, windowWidth * w, screenHeight}
end tell
set w to w + 1
if w is equal to (n + 1) then exit repeat
end repeat
end if
end tell
- Hit Compile
- Save the script with File Format: Application
- Add the application to the dock.
- Every time, you need to tile your Finder Windows. Just hit the dock icon.
- You can also configure a shortcut key for the Application.
Apple Scripts are really powerful. If you would like to learn more about Apple Scripts and want to write your own scripts.
Checkout developer.apple.com/applescript/


Leave a Reply