Skip to content

Commit

Permalink
Add keyboard configuration for Karabiner Elements
Browse files Browse the repository at this point in the history
  • Loading branch information
rodgomesc committed Aug 30, 2019
1 parent c8e532e commit 583b02a
Show file tree
Hide file tree
Showing 3 changed files with 204 additions and 0 deletions.
Binary file modified .DS_Store
Binary file not shown.
6 changes: 6 additions & 0 deletions configs/README.MD
@@ -0,0 +1,6 @@

## karabiner configuration

#### replace `karabine.json` in

`~/.config/karabiner/`s
198 changes: 198 additions & 0 deletions configs/karabiner.json
@@ -0,0 +1,198 @@
{
"global": {
"check_for_updates_on_startup": true,
"show_in_menu_bar": true,
"show_profile_name_in_menu_bar": false
},
"profiles": [
{
"complex_modifications": {
"parameters": {
"basic.simultaneous_threshold_milliseconds": 50,
"basic.to_delayed_action_delay_milliseconds": 500,
"basic.to_if_alone_timeout_milliseconds": 1000,
"basic.to_if_held_down_threshold_milliseconds": 500,
"mouse_motion_to_scroll.speed": 100
},
"rules": []
},
"devices": [
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 65535,
"vendor_id": 1452
},
"ignore": false,
"manipulate_caps_lock_led": true,
"simple_modifications": [
{
"from": {
"key_code": "f5"
},
"to": {
"key_code": "f12"
}
},
{
"from": {
"key_code": "left_alt"
},
"to": {
"key_code": "left_gui"
}
},
{
"from": {
"key_code": "left_gui"
},
"to": {
"key_code": "left_alt"
}
},
{
"from": {
"key_code": "right_alt"
},
"to": {
"key_code": "right_gui"
}
},
{
"from": {
"key_code": "right_gui"
},
"to": {
"key_code": "right_alt"
}
}
]
},
{
"disable_built_in_keyboard_if_exists": false,
"fn_function_keys": [],
"identifiers": {
"is_keyboard": true,
"is_pointing_device": false,
"product_id": 50484,
"vendor_id": 1133
},
"ignore": false,
"manipulate_caps_lock_led": false,
"simple_modifications": []
}
],
"fn_function_keys": [
{
"from": {
"key_code": "f1"
},
"to": {
"consumer_key_code": "display_brightness_decrement"
}
},
{
"from": {
"key_code": "f2"
},
"to": {
"consumer_key_code": "display_brightness_increment"
}
},
{
"from": {
"key_code": "f3"
},
"to": {
"key_code": "mission_control"
}
},
{
"from": {
"key_code": "f4"
},
"to": {
"key_code": "launchpad"
}
},
{
"from": {
"key_code": "f5"
},
"to": {
"key_code": "illumination_decrement"
}
},
{
"from": {
"key_code": "f6"
},
"to": {
"key_code": "illumination_increment"
}
},
{
"from": {
"key_code": "f7"
},
"to": {
"consumer_key_code": "rewind"
}
},
{
"from": {
"key_code": "f8"
},
"to": {
"consumer_key_code": "mute"
}
},
{
"from": {
"key_code": "f9"
},
"to": {
"consumer_key_code": "volume_decrement"
}
},
{
"from": {
"key_code": "f10"
},
"to": {
"consumer_key_code": "volume_increment"
}
},
{
"from": {
"key_code": "f11"
},
"to": {
"consumer_key_code": "display_brightness_decrement"
}
},
{
"from": {
"key_code": "f12"
},
"to": {
"consumer_key_code": "display_brightness_increment"
}
}
],
"name": "AVELL-G1513-FOX-7",
"parameters": {
"delay_milliseconds_before_open_device": 1000
},
"selected": true,
"simple_modifications": [],
"virtual_hid_keyboard": {
"country_code": 55,
"mouse_key_xy_scale": 100
}
}
]
}

0 comments on commit 583b02a

Please sign in to comment.