diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2020-01-19 10:11:37 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2020-01-19 10:19:21 +0100 |
commit | f15b59b9319d4e5a43a3e3515cb0f0449c7224c7 (patch) | |
tree | 8afadd7358b5e16965e7ab4b3957db702c17869b /doc | |
parent | 810c8ff0bea17214b4e4c5ce802ad89b5ad6e2c9 (diff) | |
download | lulua-f15b59b9319d4e5a43a3e3515cb0f0449c7224c7.tar.gz lulua-f15b59b9319d4e5a43a3e3515cb0f0449c7224c7.tar.bz2 lulua-f15b59b9319d4e5a43a3e3515cb0f0449c7224c7.zip |
Add Windows driver
Generate C header file based on layout description and create a source
bundle that must be compiled on a Windows system and then moved back to
the source tree. This sucks, but cross-compiling on Linux is a pain,
since Windows’ development headers assume a case-insensitive filesystem.
Also I’m using MSKLC because the latest driver development kit cannot
compile these drivers correctly. Dear @microsoft, please fix your shit:
https://github.com/microsoft/Windows-driver-samples/issues/433
A remaining concern right now is licensing. keyboard.{c,h,def,rc} have
been copied from a project generated by MSKLC and are probably non-free,
although pretty much identical files like
https://github.com/microsoft/Windows-driver-samples/blob/master/input/layout/kbdus/kbdus.c
are covered by MS-PL.
Also binds backspace key to \b and adjusts xmodmap/svg rendering
accordingly.
See #7.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/index.html | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/index.html b/doc/index.html index 22f72d7..7e70ce5 100644 --- a/doc/index.html +++ b/doc/index.html @@ -77,13 +77,15 @@ <div class="lbox"> <h2>Usage</h2> <dl> - <dt>Linux</dt> - <dd>Run: <code>xmodmap <a href="ar-lulua.xmodmap">ar-lulua.xmodmap</a></code></dd> + <dt>Windows</dt> + <dd>Download <a href="ar-lulua-w64.zip">driver</a> and follow instructions in <kbd>INSTALL.txt</kbd></dd> <dt>Android</dt> <dd>Install <a href="https://play.google.com/store/apps/details?id=com.menny.android.anysoftkeyboard">AnySoftKeyboard</a> and <a href="https://play.google.com/store/apps/details?id=com.anysoftkeyboard.languagepack.arabic">Arabic for AnySoftKeyboard</a> + <dt>Linux</dt> + <dd>Run: <code>xmodmap <a href="ar-lulua.xmodmap">ar-lulua.xmodmap</a></code></dd> </dd> </dl> </div> @@ -180,6 +182,11 @@ <div class="pure-u-1 pure-u-md-1-2" lang="en"> <div class="lbox"> <h2>Related work</h2> + <p>This non-comprehensive section… Unicode’s + <abbr title="Unicode Common Locale Data Repository">CLDR</abbr> + lists + <a href="https://www.unicode.org/cldr/charts/latest/keyboards/layouts/ar.html">various + Arabic keyboard layouts</a> too.</p> </div> </div> </div> |