multisn8
multisn8
They should be able to. But I have no idea at all how to debug this, I can't reproduce it with Xwayland on sway either. Related, why do you force...
Unfortunately not, without having us in a major dependency hell. I'm thinking about adding custom decorations for Neovide though. For context, the server (GNOME) providing window decorations is quite usual,...
Weirdly enough I can't reproduce this on Sway version 1.7 and Neovide both git latest/0.8. Also there was no recent change to windowing stuff.
It's not a real workaround. Xwayland has issues with HiDPI on sway and the sway developers refuse to fix it, through which every program which connects through X only gets...
What graphics driver do you run on which GPU?
Thanks for reporting! I can imagine that this is yet another issue possibly fixed by upstream winit, could you try if the [winit examples](https://github.com/rust-windowing/winit/tree/master/examples) can reproduce this issue? (I don't...
Doing some digging myself, [Neovide does this handle already](https://github.com/neovide/winit/blob/019ce9862f1745281048a5e85a957992b4a9c195/src/platform_impl/linux/x11/event_processor.rs#L165), but only if the mapping request is `MappingModifier` or `MappingKeyboard`. Upstream isn't different here. I don't know anything about X11 though,...
For me on Sway/Wayland ```vim let g:neovide_transparency=0.2 ``` works just fine, even at runtime. But that can only work if your colorscheme even supports transparency, e.g. sets the `guibg` of...
...actually it's `-1`, not `NONE`, my fault. Yeah, I doubt gruvbox is setting `-1` as `guibg`. Really not many themes do. Though a way to set _both_ "hey, transparency is...
The interesting code for that is here, in case anyone wants to hack around on it: https://github.com/neovide/neovide/blob/48dfe95b6e3b2552afbf805921aeeb26cf124d05/src/renderer/mod.rs#L135-L141 Seems like first the default background is drawn (in any case), then all...