Published:
Tagged: Swift macOS Open-Source Tiling Window-Manager
TLDR; Quadra is a keyboard-driven tiling window manager for macOS, in the spirit of Hyprland as Omarchy uses it. It’s built on the stock Accessibility API only, so it never asks you to turn off System Integrity Protection. Swift, MIT,
brew install pardel/tap/quadra.
I wanted Hyprland’s window handling on my Mac: hold one key, move windows around with the other hand, never touch the trackpad to arrange anything.
The catch with most of the macOS options is what they ask for first. The good ones want System Integrity Protection disabled, or they reach for private WindowServer calls that break on an OS update. That’s a real price for nicer window layout, and I didn’t want to pay it.
Hold F1 and the keyboard becomes window management:
~/.config/quadra/quadra.conf in Hyprland’s syntax, which reloads as you save it. A bad line gets reported by number and skipped rather than taking the whole file down. F1+? lists every binding.Everything above runs on the stock Accessibility API. No SIP change, no private calls, and a test fails the build if a private WindowServer symbol ever shows up in the binary. That last one matters more than it sounds: it’s easy to reach for one of those at 11pm when a window won’t behave, and the test is there to stop me.
The honest cost is that some things are then impossible, and I’d rather say so than let you find out:
Every frame Quadra moves is written to a journal first. Quit it and every window goes back where it was found, and if it crashes, the next launch rescues anything left off-screen.
I built that early, before any of the layout code. A window manager that loses your layout once is a window manager you stop trusting, and I wanted the recovery path to exist before there was anything to recover from.
brew install pardel/tap/quadra
macOS 14 or later, Apple silicon or Intel. First launch asks for Accessibility permission. F1 needs “Use F1, F2, etc. keys as standard function keys” in Keyboard settings, or just hold Fn with it.
This is 0.1.0, so it’s early and I’m still finding things. MIT licensed, at github.com/pardel/quadra.