Ian Douglas Scott
Ian Douglas Scott
It looks like KWin implements an `org.kde.KeyboardLayouts` DBus protocol for this functionality. So I guess the behavior there can be compared. As far as how this interacts with IMEs, etc.
I guess the concern I listed earlier about `keymap` doesn't happen on KDE with `org.kde.KeyboardLayouts`, since KDE is using input-method-v1. Which lets the input method send keysyms, instead of keycodes....
So, you're seeing a link error due to glibc not having the `memfd_create` symbol? Because I don't think that should happen. (With the latest version of wayland-rs.) `rustix` should be...
There might be an older version of wayland-rs somewhere in the dependency tree, from before we moved from `nix` to `rustix`.
I think this should be fixed now with the latest cosmic-comp and cosmic-workspaces master branches (after the alpha release packaged there).
If you want to contribute to COSMIC, this probably is a pretty tough place to start. You not only need to work with Rust, but also with both Wayland and...
The current approach is to scale all windows by the same factor, and place them on two rows if that would let them scale down less. This often works well,...
> If you did go this direction, you would probably want some extra conversion functions on the new RGBX/A types to be able to set them directly with a u32....
If I recall correctly, now that Rust supports generic associated types, it should be possible now to update it to use borrowed types in the API, instead of `String` and...
Yeah, I was wondering about that, but haven't check the history. If it were a `Copy` type the current API would be good, but not now that it contains a...