krackers
krackers
@svobs >unpublicized feature called App Nap Well app nap itself is fairly well known, but I'm surprised the app is scheduled for naptime when audio was playing just a few...
@svobs >way for apps to disable it Yeah I think there's a way for apps to opt out of it. >transitioning into legacy full screen because the window style changes...
@svobs >but adding or removing the titled style seems to be a special case which has many side effects. Is removing titled strictly necessary to achieve the "pseudo full screen"...
Fwiw I did implement the technique in https://github.com/fish-shell/fish-shell/issues/7944#issuecomment-1059597435 and I've been using it since. It's based off the technique in https://github.com/fish-shell/fish-shell/commit/b38a23a46dfac9fdaf453cced61683765790528c but modified to fix the quoting issues and it...
The loss of underline is only a minor visual issue, the more major one with actual functionality loss is that it removes the code to automatically insert the common prefix...
>(hopefully, beginner friendly) way to use your patch No, unfortunately not, since it's now several versions out of date. The version linked above is for 3.3.1, you would have to...
>when you tap at the earliest event tap location (kCGHIDEventTap) If the events are being injected by quartz itself though, then wouldn't it make sense that we don't see anything...
Fwiw I was seeing severe slowdown in even prompt rendering with cwd as a networked volume when git prompt was enabled. I ended up skipping the git part of the...
Seems like this is particular to airplay? I see the 2000ms mentioned in https://bugzilla.mozilla.org/show_bug.cgi?id=776137 as well And looking at the chromium bug https://bugs.chromium.org/p/chromium/issues/detail?id=783282 the cause is due to ignoring the...
@stephane-chazelas Thanks for that, I was finding that things like `cat (yes | psub)` were blocking, and your post perfectly explains why it does so. Rewriting the psub function so...