Kinesis Advantage 2 Swedish Setup

Published on 15 February 2021.

In this article I explain how I have configured my Kinesis Advantage 2 keyboard (US version) to also type Swedish characters.

TL;DR

I have the following mappings and macros for Linux:

[lalt]>[kpshift]
[kp-lalt]>[kpshift]

{kp-\}>{speed9}{-lctrl}{-lshift}{u}{0}{0}{e}{5}{+lshift}{+lctrl}
{kp-lshift}{kp-\}>{speed9}{-lctrl}{-lshift}{u}{0}{0}{c}{5}{+lshift}{+lctrl}
{lshift}{kp-\}>{speed9}{-lctrl}{-lshift}{u}{0}{0}{c}{5}{+lshift}{+lctrl}

{kp-'}>{speed9}{-lctrl}{-lshift}{u}{0}{0}{e}{4}{+lshift}{+lctrl}
{kp-lshift}{kp-'}>{speed9}{-lctrl}{-lshift}{u}{0}{0}{c}{4}{+lshift}{+lctrl}
{lshift}{kp-'}>{speed9}{-lctrl}{-lshift}{u}{0}{0}{c}{4}{+lshift}{+lctrl}

{kpplus}>{speed9}{-lctrl}{-lshift}{u}{0}{0}{f}{6}{+lshift}{+lctrl}
{kp-lshift}{kpplus}>{speed9}{-lctrl}{-lshift}{u}{0}{0}{d}{6}{+lshift}{+lctrl}
{lshift}{kpplus}>{speed9}{-lctrl}{-lshift}{u}{0}{0}{d}{6}{+lshift}{+lctrl}

I have the following mappings and macros for Windows:

[lalt]>[kpshift]
[kp-lalt]>[kpshift]

{kp-\}>{speed9}{-lalt}{kp0}{kp2}{kp2}{kp9}{+lalt}
{kp-lshift}{kp-\}>{speed9}{-lalt}{kp0}{kp1}{kp9}{kp7}{+lalt}
{lshift}{kp-\}>{speed9}{-lalt}{kp0}{kp1}{kp9}{kp7}{+lalt}

{kp-'}>{speed9}{-lalt}{kp0}{kp2}{kp2}{kp8}{+lalt}
{kp-lshift}{kp-'}>{speed9}{-lalt}{kp0}{kp1}{kp9}{kp6}{+lalt}
{lshift}{kp-'}>{speed9}{-lalt}{kp0}{kp1}{kp9}{kp6}{+lalt}

{kpplus}>{speed9}{-lalt}{kp0}{kp2}{kp4}{kp6}{+lalt}
{kp-lshift}{kpplus}>{speed9}{-lalt}{kp0}{kp2}{kp1}{kp4}{+lalt}
{lshift}{kpplus}>{speed9}{-lalt}{kp0}{kp2}{kp1}{kp4}{+lalt}

Read on to learn how these mappings and macros work and the reasoning behind them.

Background

Even though I am a Swede, I am a long time user of the US keyboard layout. The reason that I switched was that many keys common when programming are more convenient to type on a US keyboard.

Because I am a Swede, I also have the need to type Swedish characters which are not available on a US keyboard. I have solved that by remapping keys in software like this:

      Alt_GR+[  =>  'å'
      Alt_GR+'  =>  'ä'
      Alt_GR+;  =>  'ö'
Shift+Alt_GR+[  =>  'Å'
Shift+Alt_GR+'  =>  'Ä'
Shift+Alt_GR+;  =>  'Ö'

I use the modifier Alt_GR plus the key where the character is located on a Swedish keyboard. For example, on a Swedish keyboard, the key for å is located in the same position as the key for [ on a US keyboard (to the right of p).

US layout with Swedish keys highlighted.

Swedish layout with Swedish keys and modifier highlighted.

My solution only works on Linux, which was fine up until I had to use Windows on a regular basis.

Since I’m not that familiar with Windows, figuring out how to remap keys seemed difficult, so I started thinking of other solutions.

Universal unicode input

Then I remembered that there is a universal way to enter any unicode character in Linux. Perhaps there is something similar for Windows as well? It turns out there is. The Wikipedia page Unicode input describes it well.

On Linux, the universal way to enter a unicode character is to press and hold Ctrl+Shift, then press u, then type the unicode character hex code, then release Ctrl+Shift.

To type ‘å’ on Linux, you use the key combination Ctrl+Shift+u+00e5.

On Windows, the universal way to enter a unicode character is to press and hold Alt, then type the unicode character decimal number on the keypad, then release Alt.

To type ‘å’ on Windows, you use the key combination Alt+0229.

00e5 is the hexadecimal number for the unicode character ‘å’ which is used by Linux. 0229 is the same decimal number used by Windows. The numbers for different unicode characters can be found on this Wikipedia page.

Now I had figured out a way to enter all the Swedish characters on a US keyboard in both operating systems.

But typing the key combinations and remembering the unicode numbers was not very convenient.

Macros

Luckily for me, I am also a long time user of the Kinesis Advantage 2 keyboard. One of its features is that it is programmable. You can make one key press on the physical keyboard produce multiple key presses as seen by the computer. This is known as macros.

Here is an example of a macro for producing an ‘å’ on Windows:

{key to trigger the macro}>{speed9}{-lalt}{kp0}{kp2}{kp2}{kp9}{+lalt}

This instruct the keyboard to press and hold LeftAlt, then press keypad 0, keypad 2, keypad 2, keypad 9, and then release LeftAlt. And this at speed 9 which is the fastest speed. This macro can be triggered by any key of choice.

In total need 12 macros. First 3 macros for the lowercase ‘å’, ‘ä’, and ‘ö’. Then 3 more for the uppercase versions. And all those 6 are different on Linux and Windows, yielding in total 12 versions.

Now to the next question: How should I trigger these macros? How do I want to enter the characters?

I would like to enter them as I am used to. A modifier key + the key where the character is located on a Swedish keyboard.

Keypad layer

The Kinesis Advantage 2 also has another feature known as the keypad layer. The keypad layer is a second layer with keys. It is toggled permanently with the keyp button. It can also be made active during the press and hold of a single button.

I designated the LeftAlt key to the button that, while pressed, would activate the keypad layer. It looks like this:

[lalt]>[kpshift]
[kp-lalt]>[kpshift]

(As the manual says, the button needs to be remapped in both layers to be able to have a shift-like behavior.)

When I have LeftAlt pressed, the keypad layer is active, and all the keys on the keyboard perform different functions. By default, the keypad layer has some mappings for digits. I don’t use them, so I can override them to mean something else.

The buttons corresponding to the Swedish characters have the following names in the standard layer and the keypad layer:

       standard  keypad
å  =>     \       kp-\
ä  =>     '       kp-'
ö  =>     ;       kpplus

Swedish layout with Swedish keys and modifier highlighted.

Kinesis US layout with Swedish keys and modifier highlighted.

This is what a macro for producing an ‘å’ on Windows with the key combination LeftAtl+\ looks like:

{kp-\}>{speed9}{-lalt}{kp0}{kp2}{kp2}{kp9}{+lalt}

First, LeftAlt toggles the keypad layer on. Then, kp-\, the key for ‘å’ in the keypad layer, triggers the macro.

This is what macros for producing an ‘Å’ on Windows with the key combination Shift+LeftAtl+\ looks like:

{kp-lshift}{kp-\}>{speed9}{-lalt}{kp0}{kp1}{kp9}{kp7}{+lalt}
{lshift}{kp-\}>{speed9}{-lalt}{kp0}{kp1}{kp9}{kp7}{+lalt}

I created two macros for the shifted uppercase letters. That is because I wanted to be sure to trigger it no matter if I activated the keypad layer before or after pressing LeftShift. I’m not sure if it matters, but I suspect it might.

New way to enter Swedish characters:

          LeftAlt+\  =>  'å'
          LeftAlt+'  =>  'ä'
          LeftAlt+;  =>  'ö'
LeftShift+LeftAlt+\  =>  'Å'
LeftShift+LeftAlt+'  =>  'Ä'
LeftShift+LeftAlt+;  =>  'Ö'

These are the same mappings as I had previously, but with a different modifier key.

How to know which macro to trigger, the Linux version or the Windows version?

Hotkey layouts

Another feature of the Kinesis Advantage 2 keyboard is hotkey layouts. These are custom layouts that can be activated with a hotkey (progm+<key>).

I created two separate hotkey layouts: one for Linux and one for Windows. They have some remappings in common, but have specific macros for producing Swedish characters.

To switch between the layouts, I press progm+L for Linux and progm+W for Windows. Every time I switch operating system, I switch hotkey layout.

General problems with universal input method

On Linux, not all text entry fields support the universal input method. This is a bit annoying. Then I have to enter the text in another text field and copy paste the value. For the applications I use, it works most of the time, so I have tolerated it.

One place where it works but produces weird text is in Google Hangouts chat. When entering a unicode character, the text turns into underlined for some reason. I’m not sure if there is a problem with my version of Firefox or what is going on there.

On Windows, the universal input method have worked for me everywhere I’ve tried, but it is important to have the NumLock switched on. Otherwise the macros will not work. Sometimes NumLock gets turned off without me doing it, so sometimes the macros don’t work. I thought it was a problem in a certain text field, but it always turned out to be NumLock.

Problems with the keypad layer

When typing a Swedish character followed by a space, a ‘0’ is sometimes inserted instead. That is because the space key is mapped to the ‘0’ key in the keypad layer. I suspect that it happens if space is pressed quickly after triggering the macro so that the release of the LeftAlt key has not happened when the space is pressed.

This happens sometimes, and one solution would be to remap the keypad ‘0’ to produce a space instead.

The problem should arise with other characters as well, but the ‘0’ is the only one I have encountered.

Appendix: Kinesis Commands

This is how to create a new hotkey layout:

progm + Shift + Esc          (Enter Power User Mode)
progm + F2
<press hot key>
progm + Shift + Esc          (Exit Power User Mode)

Once that is done, the files can be edited with v-Drive:

progm + Shift + Esc          (Enter Power User Mode)
progm + F1                   (Mount v-Drive)
<edit active/l_qwerty.txt>
<edit active/w_qwerty.txt>
<eject>
progm + F1                   (Unmount v-Drive)
progm + Shift + Esc          (Exit Power User Mode)

Site proudly generated by Hakyll.