xrdp/genkeymap
Kevin Cave a1ffd4a28e Update readme.txt
Corrected spelling and grammar.
Updated to reflect additional "shiftaltgr" section.
2014-01-18 16:48:16 +00:00
..
Makefile.am add lib path for old X server install 2009-09-04 01:40:12 +00:00
dump-keymaps.sh Changes related to integration 2013-03-18 22:06:10 +00:00
genkeymap.c Update genkeymap.c 2014-01-18 16:28:06 +00:00
readme.txt Update readme.txt 2014-01-18 16:48:16 +00:00

readme.txt

Creating a new keymap file.
---------------------------

The names of the files are of the format;

km-xxxx.ini

where the xxxx is replaced by the hex number of the layout of interest.

The files have 6 sections;

[noshift], [shift], [altgr], [shiftaltgr], [capslock], [shiftcapslock]

In each section there are multiple lines for each key.

An example line looks like;

Key10=49:49

In this line, 10 is the X11 scancode, the first 49 is the keysym value,
the second 49 if the unicode value of the key.  This is the definition
for the 'noshift' '1' key on a en-us keyboard.  In this case, the keysym
and the unicode value are the same.

Here is an example where they are not;

This is the definition for the backspace key;
Key22=65288:8

And this is the star on the keypad;
Key63=65450:42

To create a new file run "xrdp-genkeymap <filename>"

Example: ./xrdp-genkeymap /etc/xrdp/km-0409.ini

Note: You need to have enough rights to be able to write to the
/etc/xrdp directory.

Alternatively, create the keymap file in a directory of your choice, then
copy or move it over to /etc/xrdp using sudo/su.