diff options
| -rw-r--r-- | colematik/colematik.xkb | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/colematik/colematik.xkb b/colematik/colematik.xkb index 51ee77f..dfbad44 100644 --- a/colematik/colematik.xkb +++ b/colematik/colematik.xkb @@ -20,10 +20,12 @@ xkb_keymap {          key <RWIN> {[ Multi_key ]}; +        # NoSymbol means don't change previous definitions. +          # more intuitive German umlauts -        key <AC01> {[ a, A, adiaeresis, Adiaeresis ]}; -        key <AD08> {[ u, U, udiaeresis, Udiaeresis ]}; -        key <AC10> {[ o, O, odiaeresis, Odiaeresis ]}; +        key <AC01> {[ NoSymbol, NoSymbol, adiaeresis, Adiaeresis ]}; # ä, Ä +        key <AD08> {[ NoSymbol, NoSymbol, udiaeresis, Udiaeresis ]}; # ü, Ü +        key <AC10> {[ NoSymbol, NoSymbol, odiaeresis, Odiaeresis ]}; # ö, Ö          include "inet(evdev)+terminate(ctrl_alt_bksp)"      }; | 
