Vortex PC66 Keyboard Notes

Here’s the manual.

Bluetooth

  1. Fn + Home until LED is solid blue.
  2. Now press any one of these to enter Pairing Mode.
    • PgUp for Device 1
    • PgDn for Device 2
    • End for Device 3

Youc an now use Fn + PgUp, PgDn, or End to switch between devices

Shortcuts

Navigation and System Controls

Arrow Keys

Special Functions

Layout and OS Switching

(LED will flash a white color)

Factory Restore

Fn + Alt_L + Alt_R (press for 3s)

Problems

Missing Tilde and Backtick :/

The I use the tilde and backtick keys a lot. They’re physically missing on this keyboard and it’s a PITA. On macOS, this means that I cannot use Command+` to “move focus to the next window” (i.e. cycling between instances of the same app).

The solution was the lovely Karabiner 🥰 Since I use Esc so little, I mapped it to tilde/backtick. Then mapped Ctrl+Esc to the real Esc. Pure Valueâ„¢. Here’s the config:

{
  "profiles": [
    {
      "name": "Default profile",
      "selected": true,
      "virtual_hid_keyboard": { "keyboard_type_v2": "ansi" },
      "complex_modifications": {
        "rules": [
          {
            "description": "Map Esc to ~ and `",
            "manipulators": [
              {
                "type": "basic",
                "from": {
                  "key_code": "escape"
                },
                "to": [
                  {
                    "key_code": "grave_accent_and_tilde"
                  }
                ]
              }
            ]
          },
          {
            "description": "Map Ctrl+Esc to Esc",
            "manipulators": [
              {
                "type": "basic",
                "from": {
                  "key_code": "escape",
                  "modifiers": {
                    "mandatory": ["control"]
                  }
                },
                "to": [
                  {
                    "key_code": "escape"
                  }
                ]
              }
            ]
          },
          {
            "description": "Remap (Command + Esc) to (Command + Backtick) so you can 'Move focus to next window'",
            "manipulators": [
              {
                "type": "basic",
                "from": {
                  "key_code": "escape",
                  "modifiers": {
                    "mandatory": ["command"]
                  }
                },
                "to": [
                  {
                    "key_code": "grave_accent_and_tilde",
                    "modifiers": ["command"]
                  }
                ]
              }
            ]
          }
        ]
      }
    }
  ]
}

Connecting Wirelessly

When not connected via a cable, macOS will think this is an Apple-made Keyboard. This has apparently been a problem since macOS Ventura. The Karabiner config above addresses this issue as well 🌸