Rectangle is a window management app based on Spectacle, written in Swift.
Rectangle arbitrarily supports macOS v10.12+. If you're willing to test on earlier versions of macOS, this can be updated.
The default keyboard shortcuts are based on Spectacle, but there is a recommended alternative set of defaults based on the Magnet app. This can be enabled by setting "alternateDefaultShortcuts" to true in NSUserDefaults for Rectangle with the following Terminal command:
defaults write com.knollsoft.Rectangle alternateDefaultShortcuts -bool true
Then restart the Rectangle app.
Spectacle used its own keyboard shortcut recorder, while Rectangle uses MASShortcut, a well maintained open source library for shortcut recording in macOS apps. This cuts down dramatically on the number of bugs that were only in Spectacle because of the custom shortcut recorder.
- Additional window actions: move windows to each edge without resizing, maximize only the height of a window, almost maximizing a window.
- Next/prev screen thirds is replaced with explicitly first third, first two thirds, center third, last two thirds, and last third. Screen orientation is taken into account, as in first third will be left third on landscape and top third on portrait.
- There's an option to have windows traverse across displays on subsequent left or right executions, similar to what Microsoft provided in Windows 7.
- Windows will snap when dragged to edges/corners of the screen. This can be disabled.
The default behavior for Rectangle is based on Spectacle. Each time you execute a half or quarter action, the width of the window will cycle through the following sizes: 1/2 -> 2/3 -> 1/3.
This behavior can be disabled with the following terminal command:
defaults write com.knollsoft.Rectangle subsequentExecutionMode -int 2
Followed by a restart of the app.
Note that the subsequentExecutionMode
is also tied to the setting for traversing displays in the prefs.
Logic from Rectangle is used in the Multitouch app. Code and localization contributors to Rectangle or Spectacle are entitled to a free license of Multitouch. Both Multitouch and Rectangle also use Sparkle and MASShortcut, so contributors to either of those projects are also entitled to a free license of Multitouch (just send me a direct message on Gitter).
Localization was done using DeepL. Since it wasn't done by a person, it's likely that the translations can be improved. If you would like to contribute to localization, all of the translations are held in the Main.strings per language.
Pull requests for localizations are welcome. Japanese, Chinese, and Korean localizations are needed.
If windows aren't resizing or moving as you expect, here's some initial steps to get to the bottom of it. Most issues of this type have been caused by other apps.
- Make sure macOS is up to date, if possible.
- Restart your machine.
- Make sure there are no other window manager applications running.
- Make sure that the app whose windows are not behaving properly does not have any conflicting keyboard shortcuts.
- Try using the menu items to execute a window action or changing the keyboard shortcut to something different so we can tell if it's a keyboard shortcut issue or not.
- Enable debug logging, as per the instructions in the following section.
- The logs are pretty straightforward. If your calculated rect and your resulting rect are identical, chances are that there is another application causing issues. Save your logs if needed to attach to an issue if you create one.
- If you suspect there may be another application causing issues, try creating and logging in as a new macOS user.
To enable debug logging (starting in v0.9.1), execute the following Terminal command:
defaults write com.knollsoft.Rectangle debug -bool true
Then restart the app.
To view logs:
- Open Console.app
- Select Action -> Include Debug Messages in the menu
- Enter this in the search bar:
process:Rectangle any:calculatedRect
You can download the latest dmg from https://rectangleapp.com or the Releases page.
Or install with brew cask:
brew cask install rectangle