The "painful" switch from a German to an English keyboard layout on Linux (Fedora) - Update 2022

3 min read

Updated 2022-03-06 (thanks to Andy for the hint)

Typing on a keyboard as a developer — the interface between the computer and the human brain. Most probably you also have optimized this “interface” for decades and usually other people have problems to follow you if you make use of your optimized workflow of typing and pressing shortcut combos on your keyboard.

So why the hell should you change your keyboard from a German layout to an English one? The German keyboard layout is quite bad for developers, think about the moves of your fingers to type { or \ on your German keyboard. Especially keyboard-oriented environments like vim were invented using the English layout. Of course, there are even more optimized developer layouts such as http://www.kaufmann.no/roland/dvorak/ but let’s stick to the basics.

I heard a lot about other developers who love the English layout so I always wanted to switch to it. Unfortunately, every time I said “now I switch”, there was an emergency or a project under time pressure and I switched back due to time constraints to finish the work as quickly as possible. Motivated by an awesome blog post by my colleague Matthias Endler https://matthias-endler.de/2018/keyboard/ who loves to optimize things and the opportunity of having less pressure during my sabbatical, I did the switch.

How to switch from a German to the US keyboard layout using Fedora

I use Fedora and i3 on a Lenovo notebook, so I had to find a good solution for using the US layout while having quick access to all German “Umlauts”. It wasn’t that easy to find a good solution but based on https://blog.florianheinle.de/englische-tastatur-umlaute I came up with the following solution that works for me.

(Update 2022) Usually, the file /usr/share/X11/xkb/symbols/us should already contain the section xkb_symbols "de_se_fi" which adds the “Umlauts”. If it is not there, you can add it manually at the end of the file but be aware, it can get overwritten by dnf updates.

partial alphanumeric_keys
xkb_symbols "de_se_fi"  { 
 
    include "us(basic)"
    include "eurosign(e)"
    name[Group1] = "German, Swedish and Finnish (US)"; 
 
    key <AC01> {[ a,            A,          adiaeresis, Adiaeresis ]};
    key <AC02> {[ s,            S,          ssharp,     U1E9E      ]};
    key <AD01> {[ q,            Q,          at                     ]};
    key <AD07> {[ u,            U,          udiaeresis, Udiaeresis ]};
    key <AD09> {[ o,            O,          odiaeresis, Odiaeresis ]};
    key <AD10> {[ p,            P,          aring,      Aring      ]};
    key <AD12> {[ bracketright, braceright, asciitilde             ]}; 
 
    include "level3(ralt_switch)"
};

You can activate the custom layout with setxkbmap us de_se_fi which results in an US layout having the Umlauts accessible via the right Alt key. I prefer that over the imho very cumbersome “dead keys” layout. To use this layout permanently you can create the file /etc/X11/xorg.conf.d/00-keyboard.conf with the content:

Section "InputClass"
Identifier "system-keyboard"
MatchIsKeyboard "on"
Option "XkbLayout" "us,at"
Option "XkbVariant" "de_se_fi,nodeadkeys"
EndSection

Did it work and is it worth it?

I did the switch a couple of weeks ago and also forced me to keep the layout while fixing a severe server outage a couple of days later (writing a lot of shell commands). The biggest problem for me was the German keyboard of my notebook. I wasn’t aware of that before, but sometimes I take a really quick look on the keyboard to re-calibrate my hands. While doing this calibration look the key labels triggered my German keyboard layout in my mind. I was always falling back to German and was pressing German keys.

I had to put stickers on my keyboard to trick my brain

The learned patterns were just too strong, so I decided to buy English keyboard layout stickers on Amazon (see on the picture). Having those, I could already saw an improvement in the first hour and after a couple of days later, I was sold: almost no mistakes, faster programming, and finally, the understanding why vim commands are that strange, at least on a German keyboard ;)

An now, after some weeks, I am still satisfied and happy that I did the switch. I am faster and pair programming gets easier as most people use English keyboards. Maybe it is painful for a couple of days, but it is definitely worth it, and it is also good to know that you can still break patterns that you have repeated and practiced over 20 years.