Skip to content

Commit

Permalink
#2408 macOS Monterey 12.7.x: moving windows between spaces requires S…
Browse files Browse the repository at this point in the history
…IP to be partially disabled
  • Loading branch information
koekeishiya committed Sep 1, 2024
1 parent a4062be commit c8f913c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Fix issue causing sticky scratchpad windows to not work as expected [#2394](https://github.com/koekeishiya/yabai/issues/2394)
- Fix window query scratchpad property flag [#2391](https://github.com/koekeishiya/yabai/issues/2391)
- When a new window is added to a stack it is placed after the currently focused window (instead of the end) [#2387](https://github.com/koekeishiya/yabai/issues/2387)
- Moving windows to other spaces requires SIP to be partially disabled for macOS Monterey 12.7.x [#2408](https://github.com/koekeishiya/yabai/issues/2408)

## [7.1.2] - 2024-08-10
### Changed
Expand Down
1 change: 1 addition & 0 deletions src/workspace.m
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ bool workspace_use_macos_space_workaround(void)
{
NSOperatingSystemVersion os_version = [[NSProcessInfo processInfo] operatingSystemVersion];

if (os_version.majorVersion == 12 && os_version.minorVersion >= 7) return true;
if (os_version.majorVersion == 13 && os_version.minorVersion >= 6) return true;
if (os_version.majorVersion == 14 && os_version.minorVersion >= 5) return true;

Expand Down

0 comments on commit c8f913c

Please sign in to comment.