summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2025-04-01 07:47:12 +0200
committerMartin Fischer <martin@push-f.com>2025-04-01 07:47:12 +0200
commite73e3e47f59c35420bbe691dd4f83e39a4e58b2a (patch)
treebc26a74f6833d751ff45399272a0010d0d1ccef3
parent25f131e3977097355b6461cfa63b1d5d81b9a4c2 (diff)
refactor(colematik): use NoSymbol to avoid repetition
-rw-r--r--colematik/colematik.xkb8
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)"
};