Skip to content

Commit c8f913c

Browse files
committed
#2408 macOS Monterey 12.7.x: moving windows between spaces requires SIP to be partially disabled
1 parent a4062be commit c8f913c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
99
- Fix issue causing sticky scratchpad windows to not work as expected [#2394](https://github.com/koekeishiya/yabai/issues/2394)
1010
- Fix window query scratchpad property flag [#2391](https://github.com/koekeishiya/yabai/issues/2391)
1111
- 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)
12+
- 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)
1213

1314
## [7.1.2] - 2024-08-10
1415
### Changed

src/workspace.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ bool workspace_use_macos_space_workaround(void)
1818
{
1919
NSOperatingSystemVersion os_version = [[NSProcessInfo processInfo] operatingSystemVersion];
2020

21+
if (os_version.majorVersion == 12 && os_version.minorVersion >= 7) return true;
2122
if (os_version.majorVersion == 13 && os_version.minorVersion >= 6) return true;
2223
if (os_version.majorVersion == 14 && os_version.minorVersion >= 5) return true;
2324

0 commit comments

Comments
 (0)