Skip to content

Instantly share code, notes, and snippets.

@frippz
Last active November 24, 2017 10:48
Show Gist options
  • Save frippz/fe176d86a75f5c47839f3b9725218a97 to your computer and use it in GitHub Desktop.
Save frippz/fe176d86a75f5c47839f3b9725218a97 to your computer and use it in GitHub Desktop.
Open 1Password Mini with F13

Installation

This file is a complex modification meant for Karabiner Elements. It has been tested on a WASD V2 88-Key Tenkeyless on macOS High Sierra using Karabiner Elements 11.3.0. YMMV.

  1. Navigate to ~/.config/karabiner/ and open karabiner.json
  2. Locate the node complex_modifications (mine was around line 8)
  3. Locate the sub-node rules and add the contents of karabiner-1password.json inside the brackets
  4. Open Karabiner Elements and check the tab "Complex Modifications" to ensure that the rule "Open 1Password Mini" shows up in the list.
{
"description": "Open 1Password Mini",
"manipulators": [
{
"from": {
"key_code": "f13"
},
"to": [
{
"key_code": "backslash",
"modifiers": [
"left_command",
"left_option"
]
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment