diff options
author | Soispha <soispha@vhack.eu> | 2023-08-30 20:53:21 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-30 21:40:30 +0200 |
commit | fe00eefdc013d243dc4abbba618738c6dcf1de60 (patch) | |
tree | 56c2fd4626f57d83508f16ef3b235e600a0dcec7 /sys/locale/keymaps | |
parent | Fix(hm/conf/lf/keymaps): Run the rename command in the console (diff) | |
download | nixos-config-fe00eefdc013d243dc4abbba618738c6dcf1de60.tar.gz nixos-config-fe00eefdc013d243dc4abbba618738c6dcf1de60.zip |
Feat(sys/locale): Add a keymap with special char support
Diffstat (limited to '')
-rw-r--r-- | sys/locale/keymaps/us_modified.xkb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/locale/keymaps/us_modified.xkb b/sys/locale/keymaps/us_modified.xkb new file mode 100644 index 00000000..711f0d0e --- /dev/null +++ b/sys/locale/keymaps/us_modified.xkb @@ -0,0 +1,14 @@ +partial alphanumeric_keys +xkb_symbols "us-modified" { + name[Group1]= "US English with additional keys"; + + key <AD09> {[ o, O, ö, Ö]}; + key <AD07> {[ u, U, ü, Ü]}; + key <AC01> {[ a, A, ä, Ä, å, Å]}; + + + include "us(basic)" + include "level3(caps_switch)" + include "level5(ralt_switch)" +} +// vim: ft=xkb |