I am trying to create a linux equivalent of Ergonomic Telugu Keyboard layout called Sarala (Hard la). I have been able to map all the keys so far. The layout uses the following key combinations for various levels.
None (Base): Level1
Shift: Level2
Ctrl + Alt: Level3
Ctrl + Alt + Shift:Level4
Where as linux uses the following for various levels.
None (Base): Level1
Shift: Level2
RAlt: Level3
RAlt + Shift:Level4
To be able to match the key combinations with my layout, I would have to map AltGr with a Ctrl + Alt. I have unsuccessfully searched though various files in /usr/share/X11/xkb/
. Does any body know how I can bind the ISO_Level3_Shift
with Ctrl + Alt ?
key <RALT> {
symbols[Group1]= [ Mode_switch, Multi_key ],
virtualMods= AltGr
};
If you want to look at the layout, it's here
xkb
configuration. – ShaggyInjun Sep 17 '14 at 19:05