Ash
Ash
Actually, wait, I hadn't tested this before, but it... works as-is right now? Hitting my layout toggle bind doesn't mess with my internal keyboard, only my external. I have no...
Based on my experimentation and the call to `(add-hook 'lsp-diagnostics-updated-hook 'lsp-ui-flycheck-list--refresh nil t)` it looks like it does do this, so I think this can just be closed.
In my brief testing, `eldoc-box` works fine with this sort of thing. I have `lsp-eldoc-render-all` set to t (you'll probably want to either disable `eldoc-mode` in `lsp-mode` buffers or set...
> is it an issue to have both x11 and wayland features enabled, and have both methods called? From looking at the winit code, no: both of them set `platform_specific.name`...
It seems like in general, when using `buildPackage`, any provided hooks are also run during the deps builder. Which is almost definitely not correct and also means that changing the...
Maybe I'm missing something (I don't have my NixOS machine handy so I can't check), but I'm not sure how defining attributes in `commonArgs` vs. in the `buildPackage` invocation will...
I'm still confused. Here's my flake.nix: ```nix { description = "Gamma management daemon for Wayland"; inputs = { crane = { url = "github:ipetkov/crane"; inputs.nixpkgs.follows = "nixpkgs"; }; fenix =...
Ah! Okay, now everything makes sense, thank you :)
Cleaner version: ```shell #!/bin/sh set -euo pipefail grim -o $(swaymsg -t get_outputs | jq -r '.[] | select(.focused) | .name') - | swayimg -s fit -f -b none - &...
Being a little cheeky here and plugging my [extol_sprite_layer](https://lib.rs/crates/extol_sprite_layer) crate, which lets you specify the layer as a type that's convertible to an `f32` and also optionally does y-sorting. That...