summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2009-08-12 06:33:55 +0000
committerjsorg71 <jsorg71>2009-08-12 06:33:55 +0000
commit1875c807949749fa3529e54006261788b0727245 (patch)
treebf66e7ed47de881fb6cd1fa17cc1d5df16a4e032
parent9f72773443d3ca5ec46c90eeb04665ad9e20a27e (diff)
downloadxrdp-proprietary-1875c807949749fa3529e54006261788b0727245.tar.gz
xrdp-proprietary-1875c807949749fa3529e54006261788b0727245.zip
added readme.txt
-rw-r--r--genkeymap/readme.txt35
1 files changed, 35 insertions, 0 deletions
diff --git a/genkeymap/readme.txt b/genkeymap/readme.txt
new file mode 100644
index 00000000..0cfeb2e9
--- /dev/null
+++ b/genkeymap/readme.txt
@@ -0,0 +1,35 @@
+
+crating a new keymap file.
+
+The names of the files are
+
+km-xxxx.ini
+
+where the xxx is replaces ny the hex number of the layout of interest.
+
+The files have 5 section
+
+[noshift], [shift], [altgr], [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 rights to the /etc/xrdp directory.
+