Is there anything like Winsplit Revolution for Mac OS X?

link|improve this question

I looked awhile back and couldn't find anything, considered attempting to write a solution but I haven't tried yet. I'll keep my eye out here though. – vfilby Nov 7 '08 at 19:12
2  
You'll likely get better answers if you explain what Winsplit Revolution does. The Mac OS X experts, more-or-less by definition, won't already know. – Mark Bessey Nov 7 '08 at 19:13
feedback

11 Answers

Try these:

  • Zooom/2 ($15) has been my favorite since I installed it. Fast, flexible, and minimizes the number of key combinations I need to remember
  • Divvy ($15) might soon replace Zoom/2 for me. It's closer to Winsplit. You can arrange windows on a grid, define your own grid arrangements, and define your own shortcuts. It also minimizes the number of keystroke combinations you need to remember. BONUS: There are Mac and Windows versions, which means if you use both platforms you can use the same window management method across all your machines.
  • Breeze ($8) makes it easy to make windows fullscreen, split left, or split right. It also lets you save screen states (generic) and for specific apps.
  • Moom ($5) is a more recent entry. It supports both keyboard shortcuts and mouse shortcuts. For the mouse shortcuts, moving the cursor over the greeen zoom button displays a popup list of different layout options: full screen, left/right half, top/bottom half, or any of the corners.
  • SizeUp ($10) mimics various aspects of WinSplit functionality, but it relies on many keystroke combinations that take time to learn. The advantage is quickly moving windows. The drawback is that it uses up a lot of global keyboard shortcuts, and there are so many I couldn't remember them all.
  • Cinch ($7) is a mouse-driven app by the makers of SizeUp. Drag your window to various hot zones on the screen edges and the window will "cinch" to that edge and resize to fill half the screen. Similar to the built-in resizing feature in Windows 7.
  • MercuryMover ($20) is quite powerful and offers fine-grained control. However, there are a lot of different key combinations and, overall, I didn't find it as easy to learn or as elegant as WinSplit. I uninstalled it almost immediately. It struck me as powerful, but inefficient and unwieldy.
  • The DIY approach (free) mentioned in another post is to combine some applescripts and bind them to quicksilver triggers. I haven't tried this. But it is a free solution.

I found the weak window management one of the hardest things to cope with when I started using a Mac.

Why go beyond spaces and expose?

Winsplit significantly adds to what spaces and expose can do. I didn't understand the appeal until I actually used it. Before that, I thought virtual desktops (ie, like spaces) was enough. Now I consider it must-have functionality, especially on large monitors and multi-mon setups.

On my Windows machine running 3 monitors, I would rank the importance of these different apps in the following order:

  1. Winsplit-like window rearranging
  2. Spaces-like virtual desktops
  3. Expose-like application switching

On my MacBook, I've learned to approach it the other way.

  1. Expose-like application switching
  2. Winsplit-like window rearranging
  3. Spaces-like virtual desktops
link|improve this answer
feedback

From the Winsplit website I understand more or less the functionality; in the past I actually used to have my window manager (Waimea) configured to do exactly that in linux.

You may try using Quicksilver to trigger one of a custom set of applescripts; each applescript would resize and move the currently focused window to a predefined location.

See this macosxhints post for inspiration...

link|improve this answer
feedback

Another question on StackOverflow adresses the same issue http://stackoverflow.com/questions/276760/tiling-window-manager-for-os-x

One answer provided links to an app called TwoUP. It's free, and does the job on OSX!

link|improve this answer
feedback

ShiftIt is a free option. Assignable hotkeys to resize to different portions of the screen (Left, Right, Top, Bottom, Top Left, Top Right, Bottom Left, Bottom Right, Full Screen and Center with current size)

Link to ShiftIt on github

Just click on the big download button towards the right of the screen.

link|improve this answer
feedback

It looks like TwoUp is dead, but here are some other options:

  • Cinch ($7) is like Aero Snap for Mac.
  • Breeze ($8) allows you to save window states and restore them like a template to another window.
  • Divvy ($14) shows a grid on the screen where you can select boxes to indicate how you want the window to fill your screen.
link|improve this answer
feedback
up vote 0 down vote accepted

Thanks to Dong Hoon's answer, I have developed a hybrid solution. Using the AppleScript Editor, you can create scripts to resize the current window, like this:

tell application "System Events"
  set _everyProcess to every process
  repeat with n from 1 to count of _everyProcess
    set _frontMost to frontmost of item n of _everyProcess
    if _frontMost is true then set _frontMostApp to process n
  end repeat

  set _windowOne to window 1 of _frontMostApp
  set position of _windowOne to {5, 0}
  set size of _windowOne to {1150, 735}
end tell

such a script will work on a 13" MacBook. Using subtle variations of this script saved to /Users/[YourUserNameHere]/Library/Scripts, you can have configure the AppleScript Editor to show itself in the menu bar, where it will allow you to select a script to run.

Using several different scripts, I'm able to resize and reposition any window with only two clicks.

Hope this helps.

link|improve this answer
Or just tell app (path to frontmost application as text) to set bounds of window 1 to {5, 0, 1150, 735}. – Lri May 4 '11 at 14:18
feedback

You should also try out secondbar. gives you an extra menubar at the second display + re-arrange options. http://mac.softpedia.com/progDownload/SecondBar-Download-63929.html

link|improve this answer
feedback

I haven't used Winsplit, so I don't know how it compares, but an app I developed, Optimal Layout, offers very flexible window tiling, as well as moving and resizing from the keyboard:

http://most-advantageous.com/optimal-layout/

link|improve this answer
feedback

You can also try Arrange application which features resize and reposition with keyboard shortcuts, on screen menu and by dragging window.

link|improve this answer
feedback

What is the WinSplit-like application for Linux (KDE, GNOME)?

Thanks and Happy New Year!

link|improve this answer
See my answer to your original question here: stackoverflow.com/questions/403348/… – cschol Dec 31 '08 at 16:33
feedback

I doubt it. Between Spaces and Expose, there's not much need for a third-party app to help manage multiple windows.

link|improve this answer
I disagree, winsplit is about manage a single large monitor area. Spaces doesn't apply because it just provides more of that space. Expose doesn't quite fit the bill either. – vfilby Nov 7 '08 at 19:44
My point isn't that Spaces and Expose provide identical features - obviously they don't. What I'm saying is that the built-in window management is good enough that 3rd-party add-ons aren't in very high demand. – Sherm Pendley Nov 8 '08 at 2:20
I also disagree because Winsplit can be used to set window sizes and locations with a single keystroke once configured. Since OS X doesn't always open windows where I like them, a Winsplit clone would allow me to put my windows where I want them. – Adrian Anttila Nov 8 '08 at 3:18
feedback

Your Answer

 
or
required, but never shown

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