Daniel Eklöf
Daniel Eklöf
> since PGO is affected by the CPU that's being used. It's actually not. PGO counts functions and branches executed, and helps re-organize the code; it clusters "hot" functions, to...
> Multithreading While Alacritty's renderer and parser may live in separate threads (do they? I'm not sure), I'm fairly sure the grid is locked. I.e. only one of them can...
FYI: foot-1.12.1 added a workaround for this. In other words, if you're trying to reproduce the behavior described above, you need **foot-1.12.0**.
This is probably established fact by now, but just wanted to let you know that https://github.com/swaywm/wlroots/pull/1537 (which I found through https://github.com/swaywm/wlroots/pull/1526) works for me too.
Got this from valgrind: ``` debug(input_manager): new text input on seat default debug(wlroots): [types/wlr_surface.c:743] New wlr_surface 0x15bdf8e0 (res 0x15bdfd50) debug(wlroots): [types/wlr_surface.c:743] New wlr_surface 0x15be0110 (res 0x15be0580) debug(wlroots): [types/xdg_shell/wlr_xdg_surface.c:465] new xdg_surface...
The InputMethodV2 Zig wrapper is incorrect; the keyboardGrab member should be a pointer: ```diff diff --git a/src/types/input_method_v2.zig b/src/types/input_method_v2.zig index 8fcfb41..0f2d101 100644 --- a/src/types/input_method_v2.zig +++ b/src/types/input_method_v2.zig @@ -76,7 +76,7 @@ pub...
Oh, and the emoji line is missing as well.
Doesn't look like applications have a way to reset the cursor?
@j4james thanks! Though I'm slightly bothered by the fact that it's not documented. Might add support to foot. Seems easy enough at least...
Yeah, having the empty string mean "no cursor", and then maybe add OSC-122 to reset doesn't seem too far fetched to me...