Tyler Mandry

Results 119 comments of Tyler Mandry

You can subscribe to global mouse events through some of the normal system APIs (I can’t remember them off the top of my head), and match up their coordinates to...

The fourth goal, keeping track of which space each window is on, is a bit more subtle. The user can trigger Mission Control and drag windows to other spaces. As...

There is also a way to track the order of spaces, but tying that to the information we already have is not trivial. [See this gist](https://gist.github.com/tmandry/e88ca15045cd02a97fa1034edf90ba98) for more. Using the...

Thanks for reporting this. It looks like the issue comes from the window having a nil `title`. The booleans are probably also for the properties `isMain`/`isFocused`. We could simply ignore...

Got it. This isn't the exact use case I had in mind for Swindler; a `Window` is generally supposed to be something that behaves like a regular window. I'd be...

I don't know the latest on this, but it seems that as of a few years ago, sandboxed apps were not allowed to use these APIs: [link](https://stackoverflow.com/questions/32116095/how-to-use-accessibility-with-sandboxed-app). (Though Apple was...

Thoughts on testing... We cannot run Swindler tests in our serial queue and have them "block" on waiting for sub-tasks to run in the same queue (because they will be...

Yeah I've been putting off publishing because of all the breaking changes I had planned prior to 0.1.0. The last I had planned was #17 upgrade to PromiseKit 6, which...

Hey, thanks for your report! I'm not actively maintaining this anymore, unfortunately (and don't have a codebase to test it with), but willing to help guide you through fixing it....

Let me know if you have any issues. If you get it working, please submit a PR and I'll get it merged. Thanks!