Yaroslav

Results 8 comments of Yaroslav

@stratosgear in theory, you can combine 2 queries like this: ``` '.. | select(.focus?) as $root | .. | select(.focused?) | "\(.name) \($root.layout)"' ``` BTW there's an interactive jq query...

I believe that prebuilt binaries should be installed using [mason](https://github.com/williamboman/mason.nvim). To do that, you need to add prebuilt binaries to github releases and either make a PR to [mason core...

I guess this is about the [installheaders](https://github.com/hyprwm/Hyprland/blob/1343aa865d04d80313b0e674c28ecfdbeb90e876/Makefile#L100). @vaxerski what you're trying to do with cpio? Keep symlinks? I'm pretty sure cmake has such options in at least some commands, might...

I don't mind. Maybe just make those generated files part of the repository and call it a day?

can we actually keep both `execute_process` and `add_custom_command`? This way these files will be generated during the configuration, and if they'll be deleted then rebuild won't fail (which was my...

I'm actually surprised that this whole IPC is not a json in the first place (like in i3/sway)

I'd propose something like ``` activelayoutv2>>KEYBOARDNAME,LAYOUTNAME,LAYOUTNAMEPOS ``` where integer `LAYOUTNAMEPOS` points to the beginning of `LAYOUTNAME` in the event string. This allows us to 1) correctly parse the event regardless...

actually, all busybox utilities are symlinks to the busybox binary, so we can detect that: ```bash $ readlink $(which wget) /bin/busybox ```