Last active
May 30, 2025 08:14
-
-
Save kungfoo/11abbe82154a1cdb149076a066d9f60c to your computer and use it in GitHub Desktop.
us_wicked keyboard layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// I do not like my umlauts to be on keys shifted by one. | |
// Since I mostly type german and english, moving the z and y | |
// keys can make sense to me depending on the context. | |
// Umlauts can be typed using alt-gr. | |
// goes here: /usr/share/X11/xkb/symbols | |
partial alphanumeric_keys | |
xkb_symbols "us_wicked" { | |
name[Group1]= "English (wicked)"; | |
include "us" | |
// Alphanumeric section | |
//key <AD06> { [ z, Z ] }; | |
key <AD07> { [ u, U, udiaeresis, Udiaeresis ] }; | |
key <AD09> { [ o, O, odiaeresis, Odiaeresis ] }; | |
key <AC01> { [ a, A, adiaeresis, Adiaeresis ] }; | |
//key <AB01> { [ y, Y ] }; | |
include "level3(ralt_switch)" | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment