Skip to content

Commit

Permalink
Karabiner.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsanchez committed Oct 4, 2022
1 parent 246a1a3 commit 6546e70
Showing 1 changed file with 83 additions and 47 deletions.
130 changes: 83 additions & 47 deletions karabiner/karabiner.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"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
"basic.to_if_held_down_threshold_milliseconds": 500,
"mouse_motion_to_scroll.speed": 100
},
"rules": [
{
Expand Down Expand Up @@ -119,25 +120,31 @@
"from": {
"key_code": "left_command"
},
"to": {
"key_code": "left_option"
}
"to": [
{
"key_code": "left_option"
}
]
},
{
"from": {
"key_code": "left_option"
},
"to": {
"key_code": "left_command"
}
"to": [
{
"key_code": "left_command"
}
]
},
{
"from": {
"key_code": "right_option"
},
"to": {
"key_code": "right_command"
}
"to": [
{
"key_code": "right_command"
}
]
}
]
}
Expand All @@ -147,106 +154,135 @@
"from": {
"key_code": "f1"
},
"to": {
"key_code": "display_brightness_decrement"
}
"to": [
{
"key_code": "display_brightness_decrement"
}
]
},
{
"from": {
"key_code": "f2"
},
"to": {
"key_code": "display_brightness_increment"
}
"to": [
{
"key_code": "display_brightness_increment"
}
]
},
{
"from": {
"key_code": "f3"
},
"to": {
"key_code": "mission_control"
}
"to": [
{
"key_code": "mission_control"
}
]
},
{
"from": {
"key_code": "f4"
},
"to": {
"key_code": "launchpad"
}
"to": [
{
"key_code": "launchpad"
}
]
},
{
"from": {
"key_code": "f5"
},
"to": {
"key_code": "illumination_decrement"
}
"to": [
{
"key_code": "illumination_decrement"
}
]
},
{
"from": {
"key_code": "f6"
},
"to": {
"key_code": "illumination_increment"
}
"to": [
{
"key_code": "illumination_increment"
}
]
},
{
"from": {
"key_code": "f7"
},
"to": {
"key_code": "rewind"
}
"to": [
{
"key_code": "rewind"
}
]
},
{
"from": {
"key_code": "f8"
},
"to": {
"key_code": "play_or_pause"
}
"to": [
{
"key_code": "play_or_pause"
}
]
},
{
"from": {
"key_code": "f9"
},
"to": {
"key_code": "fastforward"
}
"to": [
{
"key_code": "fastforward"
}
]
},
{
"from": {
"key_code": "f10"
},
"to": {
"key_code": "mute"
}
"to": [
{
"key_code": "mute"
}
]
},
{
"from": {
"key_code": "f11"
},
"to": {
"key_code": "volume_decrement"
}
"to": [
{
"key_code": "volume_decrement"
}
]
},
{
"from": {
"key_code": "f12"
},
"to": {
"key_code": "volume_increment"
}
"to": [
{
"key_code": "volume_increment"
}
]
}
],
"name": "Default profile",
"parameters": {
"delay_milliseconds_before_open_device": 1000
},
"selected": true,
"simple_modifications": [],
"virtual_hid_keyboard": {
"caps_lock_delay_milliseconds": 0,
"country_code": 0,
"keyboard_type": "ansi"
"indicate_sticky_modifier_keys_state": true,
"keyboard_type": "ansi",
"mouse_key_xy_scale": 100
}
}
]
Expand Down

0 comments on commit 6546e70

Please sign in to comment.