mirror of
https://github.com/Snigdha-OS/snigdhaos-wsl.git
synced 2025-09-22 05:04:56 +02:00
18 lines
340 B
Plaintext
Executable File
18 lines
340 B
Plaintext
Executable File
default partial xkb_compatibility "pc" {
|
|
|
|
// Sets the "Alt" virtual modifier.
|
|
|
|
virtual_modifiers Alt;
|
|
|
|
setMods.clearLocks= True;
|
|
interpret Alt_L+Any {
|
|
virtualModifier= Alt;
|
|
action = SetMods(modifiers=modMapMods);
|
|
};
|
|
|
|
interpret Alt_R+Any {
|
|
virtualModifier= Alt;
|
|
action = SetMods(modifiers=modMapMods);
|
|
};
|
|
};
|