Felix Kratz

Results 47 comments of Felix Kratz

> Does anyone have a set of functions that look nice for animating various kinds of window movement. Might be nice to allow the ability to select between a variety...

I wonder if it would be possible to make these animations not block yabai, similar to how I handle animations in SketchyBar: https://github.com/FelixKratz/SketchyBar/blob/2008f71c2162c8c4d16f007ebc9f798d8457ba15/src/animation.c#L157-L177 The implication of this would be that...

Something seems to have changed regarding to how window ordering works in the `SLSOrderWindow*` function family, which makes the animations a bit rough: https://user-images.githubusercontent.com/22680421/197950635-19d5c7fc-5d87-424c-8f00-fd7b775aba45.mp4 Additionally I have noticed that there...

If borders are drawn below the window, instead of on top of the window, there will be no flickering: https://github.com/FelixKratz/yabai/commit/fb48e7617f7e75d246684b9a3cdce37560f835fe

This is fixed by the new animation system.

I believe I could make it work by setting the "AXManualAccessibility" attribute for electron apps, but I am not sure if that leads to other bugs. I will investigate.

A list might be a good idea to better manage expectations. The source code assumes that text accessibility is implemented properly for every app (which it is not, sadly). If...

So I have looked at Slack and I can get it to actually expose some accessibility information at all via: ```bash open -a "/Applications/Slack.app" --args --force-renderer-accessibility ``` but it does...

I can't understand Apple in this regard... All of the apps in the mac app store adhere to very strict guidelines (e.g. no private frameworks like skylight), yet they completely...

I experimented a bit with a deeper system integration and was able to circumvent the accessibility limitations by gaining direct text access via the systems text input server, but stumbled...