11 lines
295 B
Plaintext
11 lines
295 B
Plaintext
// Custom US layout with Caps Lock as Escape and Escape as Grave (`)
|
|
|
|
xkb_symbols "basic" {
|
|
include "us(altgr-intl)"
|
|
|
|
name[Group1]="The best keyboard layout ever";
|
|
|
|
key <CAPS> { [ Escape ] }; // Remap Caps Lock to Escape
|
|
key <ESC> { [ grave ] }; // Remap Escape to Grave (`)
|
|
};
|