Skip to content

Commit

Permalink
Merge branch 'main' into mac-osx-left-cmd-double-tab-q-close-application
Browse files Browse the repository at this point in the history
  • Loading branch information
tekezo authored Jun 13, 2024
2 parents bd49067 + ad38b1d commit f218a14
Show file tree
Hide file tree
Showing 9 changed files with 913 additions and 0 deletions.
12 changes: 12 additions & 0 deletions public/groups.json
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,18 @@
{
"path": "json/xcode.json"
},
{
"path": "json/vs_code_left_ctrl_toggle_sidebar.json"
},
{
"path": "json/vs_code_left_option_toggle_terminal.json"
},
{
"path": "json/vs_code_left_shift_search_symbols.json"
},
{
"path": "json/vs_code_right_cmd_zen_mode.json"
},
{
"path": "json/vscode.json",
"extra_description_path": "extra_descriptions/vscode.json.html"
Expand Down
21 changes: 21 additions & 0 deletions public/json/mac_osx_disable_cmd_h.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"title": "disable cmd + h (Mac OSX: Disable Minimise Windows)",
"author": "Carlo van Wyk (https://github.com/thecarlo)",
"maintainers": ["thecarlo"],
"rules": [
{
"description": "disable cmd + h (Mac OSX: Disable Minimise Windows)",
"manipulators": [
{
"from": {
"key_code": "h",
"modifiers": {
"mandatory": ["command"]
}
},
"type": "basic"
}
]
}
]
}
59 changes: 59 additions & 0 deletions public/json/rk61_for_mac.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
"title": "RK61 Keyboard Mac Fix: Tilde and Slash Key Remapping",
"maintainers": [
"juan-28"
],
"rules": [
{
"description": "right_shift + esc → ~",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "escape",
"modifiers": {
"mandatory": [
"right_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "grave_accent_and_tilde",
"modifiers": [
"left_shift"
]
}
]
}
]
},
{
"description": "up_arrow turn to slash when press with left_command",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_command"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "slash"
}
]
}
]
}
]
}
Loading

0 comments on commit f218a14

Please sign in to comment.