I’ve been thinking about switching to KDE, and today I booted from a Fedora 40 KDE edition live USB, and played with the system a bit. I was just about to decide to install to the hard drive, but then I realized that the keyboard settings dialog didn’t provide an option to use the right Alt key as an additional Ctrl key, which is sadly a dealbreaker for me. Is this a bug or a (missing) feature?
There are 13 options for the Ctrl key listed at Settings > Input devices > keyboard > Advanced > Ctrl position
, although XKB provides 14 options for the Ctrl key by default, where the missing one (i.e. ralt_rctrl
) is one of two XKB options that I use on GNOME with the command below:
gsettings set org.gnome.desktop.input-sources xkb-options "['ctrl:ralt_rctrl,ctrl:swapcaps']"
These two options can also be used directly with the setxkbmap
utility outside a desktop environment:
setxkbmap -option ctrl:ralt_rctrl -option ctrl:swapcaps
The 14 XKB options for the Ctrl key are described in the file /usr/share/X11/xkb/symbols/ctrl
on my system:
// Eliminate CapsLock, making it another Ctrl. … "nocaps" … // Make the left Ctrl key a left Meta. … "lctrl_meta" … // Swap the functions of the CapsLock key and the left Ctrl key. … "swapcaps" … // Make the left Ctrl key a left Hyper, // and the CapsLock key a left Control. … "hyper_capscontrol" … // Move Ctrl to the leftmost key on the middle row and CapsLock to the // leftmost key on the bottom row. Only works if the geometry or keycodes // file has defined appropriate aliases for the keys in question. … "ac_ctrl" … // Move Ctrl to the leftmost key on the bottom row and CapsLock to the // leftmost key on the middle row. Only works if the geometry or keycodes // file has defined appropriate aliases for the keys in question. … "aa_ctrl" … // Right Ctrl functions as another right Alt. … "rctrl_ralt" … // Menu key functions as another right Ctrl. … "menu_rctrl" … // Right Alt key functions as another right Ctrl. … "ralt_rctrl" … // Swap the functions of the left Alt key and the left Ctrl key. … "swap_lalt_lctl" … // Swap the functions of the right Alt key and the right Ctrl key. … "swap_ralt_rctl" … // Swap the functions of the left Win key and the left Ctrl key. … "swap_lwin_lctl" … // Swap the functions of the right Win key and the right Ctrl key. … "swap_rwin_rctl" … // Map Ctrl to the left Alt key, Alt to the left Win key, // and Super to the left Ctrl key. … "swap_lalt_lctl_lwin" …
Am I missing something? Can this option be missing only in a live session? (not likely? )
Thanks.