116
Reassessing Wayland
(dudemanguy.github.io)
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
As someone who hasn't yet moved to Wayland, how good is support these days for alternate keyboard mappings? Is this something that each individual window manager needs to support, or does Wayland itself manage them?
Not just "international keyboard" support, but truly arbitrary keyboard/symbol mapping support. I muddle in programming with APL, which needs its own key mapping with Unicode symbols.
I recall KDE had its own mapping support which used some system APL layout but I'd rather not have key mappings tied to a specific window manager.
I'm not sure I fully understood what you said, but I have messed around with changing layouts, as I use Colemak. It's really annoying to have GDM or SDDM default to QWERTY.
The "correct" way to do it is to use
localectl [--no-convert] set-x11-keymap us,us "" colemak, grp:win_space_toggle
, and that changes the relevant config files. So, Wayland is pulling from X11 configs (I think).Great info! I will try it when I decide to trial-run Wayland again, thank you!
(Some things I had read online suggested that Wayland did not use the x11 configs. If it does, that's good news.)
I sincerely hope it works for you! That
--no-config
flag tellslocalectl
not to change the layout for the TTY consoles, and it might be important to include for systems with encryption (I don't understand why, just something I saw when reading on the Arch wiki).